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

Checking authentication...

Loading...

Click "Send Request" to see the response

Endpoint

GET https://img.vectorup.dev/{identifier}?token=YOUR_TOKEN

Quick Start

<img src="https://img.vectorup.dev/apple.com?token=YOUR_TOKEN" />

The identifier depends on what you have:

You haveURL pattern
Domain/{domain}
Stock Ticker/ticker/{symbol}
ISIN / CUSIP/ticker/{id}
Crypto symbol/crypto/{symbol}
Company name/{name}

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

ParameterDefaultDescription
tokenrequiredYour 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 token
  • 404 — Logo not found
  • 429 — 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.