API Reference

Brand API

The Brand API provides comprehensive data about companies, including their address, domain, founding year, and number of employees. It's designed for developers looking to integrate reliable brand information into their applications, making it easier to enhance user experiences with up-to-date brand insights.

GET /brands/{identifier}

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

Retrieve brand information for a stock ticker

curl --request GET \
  --url https://api.BrandSearch.com/brands/AAPL \
  --header 'Authorization: Bearer <secret-api-token>'

Parameters

Authorization Header

HeaderTypeDescription
Authorizationstring (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

ParameterTypeDescription
identifierstring (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 - Brand information found and returned as JSON

FieldTypeDescription
namestringCompany name
domainstringCompany domain
long_namestringFull legal company name
short_descriptionstringBrief company description
long_descriptionstringDetailed company description
websitestringCompany website URL
logostringURL to company logo
colorsstring[]Brand colors (hex codes)
founded_yearstringYear company was founded
issued_currencystringPrimary trading currency
number_of_employeesstringNumber of employees
social_mediaobjectSocial media links (facebook, x, instagram, linkedin, youtube, pinterest, tiktok, reddit, snapchat, discord, tumblr, vimeo)
addressobjectCompany address (address1, address2, city, state, zip, country)
gics_sectorstringGICS sector classification
gics_industry_groupstringGICS industry group
gics_industrystringGICS industry
gics_sub_industrystringGICS sub-industry

Example Response

{
  "name": "Apple Inc.",
  "domain": "apple.com",
  "long_name": "Apple Inc.",
  "short_description": "Technology company that designs and manufactures consumer electronics",
  "website": "https://www.apple.com",
  "logo": "https://img.BrandSearch.com/apple.com",
  "colors": [
    "#000000",
    "#ffffff"
  ],
  "founded_year": "1976",
  "number_of_employees": "164000",
  "social_media": {
    "facebook": "https://facebook.com/apple",
    "x": "https://x.com/apple",
    "instagram": "https://instagram.com/apple"
  },
  "address": {
    "address1": "One Apple Park Way",
    "city": "Cupertino",
    "state": "CA",
    "zip": "95014",
    "country": "USA"
  },
  "gics_sector": "Information Technology",
  "gics_industry": "Technology Hardware, Storage & Peripherals"
}