API Reference
Logo API
Get a logo image for any company, stock, or cryptocurrency. Drop it straight into an <img> tag.
API Playground
Try it live — each call uses your quota
Loading...
Click "Send Request" to see the response
Endpoint
https://img.vectorup.dev/{identifier}?token=YOUR_TOKENQuick Start
<img src="https://img.vectorup.dev/apple.com?token=YOUR_TOKEN" /> The identifier depends on what you have:
| You have | URL pattern | Example |
|---|---|---|
| Domain | /{domain} | /apple.com |
| Stock Ticker | /ticker/{symbol} | /ticker/AAPL |
| ISIN / CUSIP | /ticker/{id} | /ticker/US0378331005 |
| Crypto symbol | /crypto/{symbol} | /crypto/BTC |
| Company name | /{name} | /McDonald's |
The /ticker/ endpoint also accepts SEDOL, WKN, and exchange-suffixed tickers like APC.DE or ROG:SW. If no exchange is given, US is assumed.
Parameters
| Parameter | Default | Description |
|---|---|---|
token | required | Your publishable API token |
Response
Returns a 302 redirect to the logo image on our CDN. The image is served as SVG or PNG with correct Content-Type headers. Drop it straight into an <img> tag — browsers and HTTP clients follow the redirect automatically.
Caching
Responses include Cache-Control: public, max-age=31536000, immutable, so logos are cached for up to one year.
CORS
All endpoints return Access-Control-Allow-Origin: *, so you can call the API from any browser-based application.
Errors
401— Missing or invalid token404— Logo not found429— Monthly quota exceeded
Rate Limits
Requests are counted per calendar month across all API keys on your account. When you exceed your quota the API responds with 429. Check your usage on the account dashboard.
The free plan is limited to 1,000 requests/month and requires an attribution link.