Parqet Logo API
Guide
Use our API directly in your HTML image tags. No need to download or host anything.
<img src="https://assets.parqet.com/logos/:assetIdType/:assetId" />
Path Parameters:
assetIdType
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.
assetId
The identifier of the asset. E.g. IE00B8GKDB10 if assetIdType
is isin
. Or TSLA if assetIdType
is symbol
.
Query parameters
format
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.
Attribution
Our Logo API is available for free with attribution. If you use it, you must link back to Parqet 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://parqet.com/api">Logos provided by Parqet</a>
Examples
Get the logo of Apple via ISIN in the default SVG-format.
<img src="https://assets.parqet.com/logos/isin/US0378331005" />
Get the logo of Microsoft via ticker symbol in JPG-format
<img src="https://assets.parqet.com/logos/symbol/MSFT?format=jpg" />
Get the logo of Mercedes-Benz via WKN in PNG-format
<img src="https://assets.parqet.com/logos/wkn/710000?format=png" />
Get the logo of Bitcoin in PNG-format
<img src="https://assets.parqet.com/logos/crypto/BTC?format=png" />