GET
/
brands
/
{identifier}
curl --request GET \
  --url https://api.logokit.com/brands/{identifier} \
  --header 'Authorization: Bearer <token>'
{
  "address": {
    "address1": "<string>",
    "address2": "<string>",
    "city": "<string>",
    "state": "<string>",
    "zip": "<string>",
    "country": "<string>"
  },
  "domain": "<string>",
  "founded_year": "<string>",
  "icon": "<string>",
  "issued_currency": "<string>",
  "long_description": "<string>",
  "name": "<string>",
  "number_of_employees": "<string>",
  "short_description": "<string>",
  "website": "<string>"
}

Brand API endpoints are available only for paid plans. If you are on a free plan, you can upgrade here.

Authentication

Brand API endpoint is authenticated using Bearer token in the Authorization header of your request. Make sure to keep this secret API token secure and do not share it publicly. You can find yours in your account.

Authorization: Bearer: <secret-api-token>

Rate Limiting

Similar to the Logo API, the Brand API implements rate limiting based on user subscription plans. To get more information about the rate limits, please refer to the pricing page.

Examples

Parameters

Authorizations

Authorization
string
header
required

Bearer token authentication. You must provide a valid Secret API token in the Authorization header of your request. You can find yours in your account settings.

Path Parameters

identifier
string
required

The domain or stock ticker for which you want to retrieve brand information. For example, apple.com or AAPL. We support all major stock exchanges worldwide.

Example:

"apple.com"

Response

200
application/json
Brand information found and returned as JSON.

The response is of type object.