NewConnect Claude, Gemini, ChatGPT, and other AI agents to API Ninjas via our MCP server

Logo API

The Logo API provides logo images for tens of thousands of different public and private companies.

(4.4)

From 8,830 users

3,600+

Applications using this API

API Status

Online - All Systems Operational

API Response Times

Average
P50
P75
P90
P95
262ms281ms325ms758ms919ms

Didn't find what you were looking for? Suggest an improvement


/v1/logo GET

https://api.api-ninjas.com/v1/logo

Get a list of company names, ticker symbols, and logo image URLs matching the input parameters. Returns at most 10 results.

Parameters

    Either name or ticker parameter is required.

  • name  optional

    Company name. Supports partial matching (e.g. Micro will match Microsoft). Case-insensitive.

  • ticker  optional

    Company ticker symbol (for publicly traded companies only).

Headers

  • X-Api-Key  required

    API Key associated with your account.

Response

A JSON array of objects, each containing the following fields, or an error if the request is unsuccessful.

  • name  string

    Company name.

  • ticker  string

    Company ticker symbol (for publicly traded companies only).

  • image  string

    Company logo image URL.

Sample Request Live Demo!

name
ticker

Try our APIs in the API playground

Sign up for a free API key to get started — no credit card required.

https://api.api-ninjas.com/v1/logo?name=Microsoft

Headers

X-Api-KeyLog in or sign up to get your API Key

Sample Response

JSON
[
    {
      name:"Microsoft",
      ticker:"MSFT",
      image:"https://api-ninjas-data.s3.us-west-2.amazonaws.com/logos/https://api-ninjas-data.s3.us-west-2.amazonaws.com/logos/l11f3242118ff2add5d117cbf216f29ac578f6ba6.png"
    }
]

Code Examples

1 2 curl -X GET "https://api.api-ninjas.com/v1/logo?name=Microsoft" \ -H "X-Api-Key: YOUR_API_KEY"

If your programming language is not listed in the Code Example above, you can still make API calls by using a HTTP request library written in your programming language and following the above documentation.

Frequently Asked Questions

  • Yes, but you must have a premium subscription. Commercial use of the Logo API is not permitted on the free tier. See our pricing page to choose a plan that fits your needs.
  • Sign up for a free account to instantly get your API key, then pass it in the X-Api-Key header on every request. The documentation above includes ready-to-run examples in cURL, Python, JavaScript, Node.js, and more.
  • Your API requests will simply be denied once you hit your monthly quota — you will never be charged more than the plan you signed up for. To increase your quota, you can upgrade your plan any time on our pricing page.
  • The API responds with a standard HTTP status code and a JSON error message describing the problem. See our error codes reference for the full list of codes and how to resolve each one, or contact support if you need help.
  • Send a GET request to /v1/logo with either the name parameter (e.g. Microsoft) or the ticker parameter for publicly traded companies. The name parameter is case-insensitive and supports partial matching, so Micro will match Microsoft. Create a free account to get an API key and start querying.
  • The endpoint returns a JSON array of up to 10 matching objects, each containing the company name, its ticker symbol (for publicly traded companies only), and an image URL pointing to the company logo. See the full field reference and possible error codes in the docs.
  • The Logo API provides logo images for tens of thousands of different public and private companies, so you can resolve logos for both listed firms and private brands. Browse our full API catalog for related image tools.
  • It is ideal for displaying company logos in financial dashboards, CRM tools, autocomplete search results, and brand directories by querying with a name or stock ticker. For other visual assets, pair it with the Country Flag API, Random Image API, or Emoji API.