List of Companies
Introduction
This endpoint returns the company index, or a list of available companies along with their tickers and stock exchanges.
You can fetch both the complete list by leaving the body empty, or narrow down your index to a specific group.
Set up
Endpoint
Endpoint
Get all available companies
Body
// leave empty for the full list
Response
{
"data": [
{
"sku": "SHE_000001",
"ticker": "000001",
"exchange": "SHE",
"shortName": "Ping An Bank"
},
{
"sku": "HKG_00001",
"ticker": "00001",
"exchange": "HKG",
"shortName": "CK Hutchison"
},
{
"sku": "SHE_000017",
"ticker": "000017",
"exchange": "SHE",
"shortName": "Shenzhen China Bicycle"
},
{
"sku": "HKG_00002",
"ticker": "00002",
"exchange": "HKG",
"shortName": "CLP Group"
},
{
"sku": "SHE_000021",
"ticker": "000021",
"exchange": "SHE",
"shortName": "Shenzhen Kaifa Technology"
},
{
"sku": "HKG_00003",
"ticker": "00003",
"exchange": "HKG",
"shortName": "Towngas"
},
{
"sku": "SHE_000032",
"ticker": "000032",
"exchange": "SHE",
"shortName": "Shenzhen SED"
},
{
"sku": "SHE_000034",
"ticker": "000034",
"exchange": "SHE",
"shortName": "Digital China"
},
{
"sku": "HKG_00004",
"ticker": "00004",
"exchange": "HKG",
"shortName": "Wharf (Holdings)"
},
{
"sku": "SHE_000049",
"ticker": "000049",
"exchange": "SHE",
"shortName": "Desay Battery"
},
{
"sku": "SHE_000050",
"ticker": "000050",
"exchange": "SHE",
"shortName": "Tianma"
}
]
}
Get specific group
Choose from the following fields:
|
search by a text keyword in the company name, exchange or ticker |
|
search by a predefined list of sectors (look up here) |
|
search by a predefined list of tech themes (look up here) |
|
search by a predefined list of world regions (choose from Africa, Asia-Pacific, Europe, Latin America & Caribbean, Middle East, United States & Canada) |
|
search by a country HQ (look up here - two-letter ISO codes) |
Body
{
"keyword": [
"Microsoft",
"Enterprise",
"Communications"
],
"industries": [
"Semiconductors",
"IoT"
],
"themes": [
"Consumer SaaS",
"BioTech"
],
"regions": [
"Europe",
"United States & Canada"
],
"countries": [
"UK",
"US"
]
}
{
"data": [
{
"sku": "ROCO_5278",
"ticker": "5278",
"exchange": "ROCO",
"shortName": "Sunfun Info"
},
{
"sku": "BOM_540704",
"ticker": "540704",
"exchange": "BOM",
"shortName": "Matrimony.com"
},
{
"sku": "TKS_6071",
"ticker": "6071",
"exchange": "TKS",
"shortName": "IBJ Inc."
},
{
"sku": "NAS_BMBL",
"ticker": "BMBL",
"exchange": "NAS",
"shortName": "Bumble"
},
{
"sku": "NYS_GRND",
"ticker": "GRND",
"exchange": "NYS",
"shortName": "Grindr"
},
{
"sku": "NAS_IAC",
"ticker": "IAC",
"exchange": "NAS",
"shortName": "IAC"
},
{
"sku": "NAS_MOMO",
"ticker": "MOMO",
"exchange": "NAS",
"shortName": "Hello Group"
},
{
"sku": "NAS_MTCH",
"ticker": "MTCH",
"exchange": "NAS",
"shortName": "Match Group"
},
{
"sku": "ETR_PSM",
"ticker": "PSM",
"exchange": "ETR",
"shortName": "ProSiebenSat.1 Media"
}
]
}