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
275ms307ms346ms752ms1096ms

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

  • 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 this API endpoint with all available parameters in our API playground

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

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.