Stock Logos in Google Sheets & Excel
One IMAGE() formula turns a column of tickers, ISINs, or WKNs into real company logos -- no plugin, no add-on, no manual downloading.
Same REST API either way: the formula that works in a spreadsheet today is the same endpoint a production app calls tomorrow.
What the Formula Returns
Column A holds the ticker. Column B is the IMAGE() formula. This is the real output.
| # | A: Ticker | B: =IMAGE(...) | C: Company |
|---|---|---|---|
| 2 | AAPL | Apple Inc. | |
| 3 | MSFT | Microsoft Corporation | |
| 4 | AMZN | Amazon.com, Inc. |
Google Sheets
- Put a ticker, ISIN, or WKN in column A (e.g.
AAPLinA2). - In column B, enter the formula below and press Enter.
- Drag the fill handle down to apply it to every row.
=IMAGE("https://api.logostream.dev/stocks/symbol/"&A2&"?key=YOUR_API_KEY&variant=icon&format=png")Google Sheets' IMAGE() function fetches the URL and renders it directly in the cell -- the row height auto-adjusts to fit the logo.
Excel
Excel's own IMAGE() function (Microsoft 365 subscribers) works the same way:
=IMAGE("https://api.logostream.dev/stocks/symbol/"&A2&"?key=YOUR_API_KEY&variant=icon&format=png","Logo")On an older Excel build without IMAGE(), the same URL works as a linked picture via Insert > Pictures > From a File, pasted as a web address.
Ticker, ISIN, or WKN -- Your Choice
Swap the identifier segment in the URL to match whatever column your spreadsheet already uses.
By ticker
/stocks/symbol/AAPLBy ISIN
/stocks/isin/US0378331005By WKN
/stocks/wkn/865985Beyond Stocks: Banks & Crypto
The same formula pattern works for bank and crypto identifiers, since they're the same authenticated API -- not a separate, spreadsheet-only product tier.
Bank by BIC
=IMAGE("https://api.logostream.dev/banks/bic/DEUTDEFFXXX?key=YOUR_API_KEY&format=png")Crypto by symbol
=IMAGE("https://api.logostream.dev/cryptos/bitcoin?key=YOUR_API_KEY&format=png")Some competing spreadsheet-logo endpoints are free but scoped to stocks only and explicitly barred from use outside a spreadsheet -- a separate, paid API is required to use the same lookup in a real application. logostream.dev is one API for both, so a formula built today for a spreadsheet prototype becomes production code without a rewrite.
FAQ: Logos in Spreadsheets
Get Your API Key
One key, every identifier type, every asset class -- spreadsheet or production app.