# Logo The logo endpoint provides the official logo image for a specified company, cryptocurrency, or forex pair. This endpoint is useful for integrating visual branding elements into financial applications, websites, or reports, ensuring that users can easily identify and associate the correct logo with the respective financial asset. **API credits cost:** `1` per symbol ## Parameters - `symbol` (string, required) The ticker symbol of an instrument for which data is requested, e.g., `AAPL`, `BTC/USD`, `EUR/USD`. - `exchange` (string, optional) The exchange name where the instrument is traded, e.g., `NASDAQ`, `NSE` - `mic_code` (string, optional) The Market Identifier Code (MIC) of the exchange where the instrument is traded, e.g., `XNAS`, `XLON` - `country` (string, optional) The country where the instrument is traded, e.g., `United States` or `US` ## Response - `meta` (object) Meta information about the instrument - `symbol` (string) The ticker symbol of an instrument - `exchange` (string) The exchange where the instrument is traded (for `crypto` only) - `url` (string) Link to download the logo (for stocks only) - `logo_base` (string) Link to download the base currency logo (for `forex` and `crypto` only) - `logo_quote` (string) Link to download the quote currency logo (for `forex` and `crypto` only) ## Example Request ```bash curl "https://api.twelvedata.com/logo?symbol=BTC/USD&apikey=demo" ``` ## Example Response ```json { "meta": { "symbol": "BTC/USD", "exchange": "Coinbase Pro" }, "url": "https://api.twelvedata.com/logo/apple.com", "logo_base": "https://logo.twelvedata.com/crypto/btc.png", "logo_quote": "https://logo.twelvedata.com/crypto/usd.png" } ```