v1

latestOpenAPI 3.1.02026-07-2268276396.6 KB
Companies

Find by details

Bigdata.com Knowledge Graph tracks over 7 million companies worldwide. Use this endpoint to search by name, website, ticker, or other market identifiers. Refine your results with filters such as company type, country, or sector.

post/v1/knowledge-graph/companies

Request body

querystring

It accepts a partial or complete company name, webpage, ticker, ISIN, SEDOL, or CUSIP. Examples: 'Apple', 'AAPL', 'https://www.apple.com/', 'CA03785Y1007'

typesstring[]

The company type can be PUBLIC or PRIVATE

countriesstring[]

It accepts country codes using the ISO 3166-1 A-2, for instance "US" for the United States

sectorsstring[]

It accepts a list of sectors that can be retrieved with the endpoint "/knowledge-graph/companies/sectors"

Example request

{
  "query": "Apple",
  "types": [
    "PUBLIC"
  ],
  "countries": [
    "US",
    "FR"
  ],
  "sectors": [
    "Technology",
    "Financials",
    "Industrials"
  ]
}

Response

Successful response with company data

Example response

{
  "results": [
    {
      "id": "D8442A",
      "name": "Apple Inc.",
      "description": "Apple Inc. (formerly Apple Computer Inc.), incorporated on January 03, 1977, designs, manufactures, and markets mobile communication and media devices, personal computing products, and portable digital music players worldwide.",
      "type": "PUBLIC",
      "country": "US",
      "sector": "Technology",
      "industry_group": "Computer Hardware",
      "industry": "Computer Hardware",
      "favicon": "http://www.apple.com/favicon.ico",
      "webpage": "http://www.apple.com",
      "isin_values": [
        "CA03785Y1007",
        "TH0150120408",
        "TH0809121500",
        "US0378331005"
      ],
      "cusip_values": [
        "037833100",
        "03785Y100",
        "P0R684385",
        "Y100G4352",
        "Y49876132"
      ],
      "sedol_values": [
        "2046251",
        "BNC31R1",
        "BPXWT99",
        "BVBDDG1"
      ],
      "listing_values": [
        "XBKK:AAPL80",
        "XNAS:AAPL"
      ],
      "ticker": "AAPL"
    }
  ],
  "metadata": {
    "request_id": "4563eda4-3655-4bdf-8a83-82407ad25276",
    "timestamp": "2025-10-16T17:30:26.648779+00:00"
  },
  "usage": {
    "knowledge_graph_tokens": 1
  }
}