Use our API directly in your HTML image tags. No need to download or host anything.
<img src="https://api.elbstream.com/logos/:assetIdType/:assetId" />
The identifier-type of assets you want to use. Can be:
symbol: Symbol as defined on NASDAQ. Example values: AAPL, TSLA, MSFT.isin: internationally standardized, 12-digit security codewkn: 6-digit code to uniquely identify a security in Germany, e.g. A1T8FVcrypto: Coin symbols like BTC, ETH, etc.country: ISO 3166-1 country codes like DE, US, SE, etc.The identifier of the asset. E.g. IE00B8GKDB10 if assetIdType is isin. Or TSLA if assetIdType is symbol.
Defines the image format. Can be svg, png, webp, or jpg . Default is svg . If an SVG is not available, a PNG is returned as fallback.
Defines size in pixels of the returned image for png, webp, or jpg formats. Default is 100.
Our Logo API is available for free with attribution. If you use it, you must link back to Elbstream on any page where a logo is shown. The attribution must be clearly visible and use a minimum font size of 12 points.
<a href="https://elbstream.com">Logos provided by Elbstream</a>
Get your API key to use the Logo API without attribution.
Get the logo of Apple via ISIN in the default SVG-format.
<img src="https://api.elbstream.com/logos/isin/US0378331005" />
Get the logo of Microsoft via ticker symbol in JPG-format in 300x300 pixels.
<img src="https://api.elbstream.com/logos/symbol/MSFT?format=jpg&size=300" />
Get the logo of Mercedes-Benz via WKN in PNG-format
<img src="https://api.elbstream.com/logos/wkn/710000?format=png" />
Get the logo of Bitcoin in PNG-format
<img src="https://api.elbstream.com/logos/crypto/BTC?format=png" />
Get the flag of Germany in SVG
<img src="https://api.elbstream.com/logos/country/de" />