API Reference

Brand API

Structured company data as JSON — name, logo URL, headquarters, and more.

API Playground

Try it live — each call uses your quota

Checking authentication...

Click "Send Request" to see the response

Quick Start

GET /api/logos/{identifier}/info?token=YOUR_TOKEN
curl "https://api.vectorup.dev/api/logos/AAPL/info?token=YOUR_TOKEN"

The identifier can be a stock ticker, company name, or domain. The API automatically resolves it.

IdentifierExample
Stock ticker/api/logos/AAPL/info
Company name/api/logos/McDonald's/info
Domain/api/logos/apple.com/info

The Brand API requires a paid plan. See plans.

Authentication

Pass your publishable token as a query parameter:

/api/logos/AAPL/info?token=pk_...

Example Response

{
  "name": "Apple Inc.",
  "symbol": "AAPL",
  "type": "stock",
  "description": "Apple Inc. designs, manufactures, and markets smartphones, personal computers...",
  "logo": "https://img.vectorup.dev/ticker/AAPL",
  "website": "https://apple.com",
  "industry": "Consumer Electronics",
  "sector": "Technology",
  "ceo": "Tim Cook",
  "employees": "164000",
  "founded": "1980-12-12",
  "headquarters": {
    "city": "Cupertino",
    "state": "California",
    "country": "US"
  },
  "exchange": "NASDAQ Global Select",
  "isin": "US0378331005",
  "market_cap": 3200000000000,
  "currency": "USD",
  "is_actively_trading": true
}

Response Fields

Every response includes name, type, logo, and description. Additional fields depend on the entity type.

FieldTypePresent on
namestringall
typestringall — "stock" or "merchant"
logostringall
descriptionstringall
websitestringall
headquartersobjectall — city, state, country
employeesstringall
industry, sectorstringstocks
ceostringstocks
exchange, isin, currencystringstocks
market_cap, pricenumberstocks
is_actively_tradingbooleanstocks
founded, foundersstring / string[]merchants
key_peopleobject[]merchants — name + role
social_mediaobject[]merchants
wikipediastringmerchants

Fields that don't apply or have no data are returned as null.

Errors

  • 401 — Missing or invalid token
  • 404 — Identifier not found
  • 429 — Monthly quota exceeded