Logo API
The Logo API provides logo images for tens of thousands of different public and private companies.
/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
nameoptionalCompany name. Supports partial matching (e.g.
Microwill matchMicrosoft). Case-insensitive.tickeroptionalCompany ticker symbol (for publicly traded companies only).
Either name or ticker parameter is required.
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Response
namestringCompany name.
tickerstringCompany ticker symbol (for publicly traded companies only).
imagestringCompany logo image URL.
Sample Request Live Demo!
https://api.api-ninjas.com/v1/logo?name=MicrosoftHeaders
X-Api-KeyLog in or sign up to get your API KeySample Response
1
2
3
4
5
6
7
[
{
"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.