# Logo API for Fintech Applications

> Stock tickers, crypto logos, and company logos for trading platforms, banking apps, and financial dashboards. One API for all your fintech logo needs.

## Integration Steps

1. **Use ticker/crypto image URLs** — `img.loadlogo.com/ticker/AAPL` or `img.loadlogo.com/crypto/btc` directly in `<img>` tags.
2. **Fetch metadata** — `api.loadlogo.com/ticker/AAPL` returns company name, domain, exchange alongside the logo.
3. **Build watchlists** — Map arrays of symbols to logo URLs for instant visual identification.
4. **Use brand colors** — Access brand colors via the describe endpoint to match your UI.

## Benefits

- Unified API for stocks, crypto, and company logos
- All major exchanges: NYSE, NASDAQ, LSE, TSX, and more
- 20,000+ crypto tokens via CoinGecko
- Sub-100ms delivery from edge CDN
- AI ticker-to-domain resolution
- Free tier with no API key

## Code Example

```javascript
// Stock watchlist
const tickers = ["AAPL", "MSFT", "GOOGL", "TSLA"];
tickers.forEach(t => {
  const img = `https://img.loadlogo.com/ticker/${t}?size=48`;
  console.log(`${t}: ${img}`);
});

// Crypto portfolio
const tokens = ["btc", "eth", "sol"];
tokens.forEach(t => {
  const img = `https://img.loadlogo.com/crypto/${t}?size=48`;
  console.log(`${t}: ${img}`);
});
```

## Related Features

- [Stock Ticker Logos](/features/stock-tickers.md)
- [Cryptocurrency Logos](/features/crypto-logos.md)
