Skip to main content

Asia Industry Taxonomies — Endpoints

Base URL: https://datafeed.ub-speeda.com/asia/industry-taxonomies/v1


Get All Companies with Taxonomy

Retrieve all companies with their taxonomy classifications, with pagination and filtering.

GET /companies

Required Scopes: taxonomy:*:read / taxonomy:private:read / taxonomy:public:read, country access scope

Parameters

NameInTypeRequiredDefaultDescription
countryquerystringYesISO 3166-1 alpha-3 country code, or ALL
company_typequerystringYesPUBLIC, PRIVATE, or ALL
pagequeryintegerNo1Page number
page_sizequeryintegerNo25Items per page

Example Request

curl -X GET "https://datafeed.ub-speeda.com/asia/industry-taxonomies/v1/companies?country=SGP&company_type=ALL&page=1&page_size=25" \
-H "Authorization: Bearer {access_token}"

Example Response

{
"data": [
{
"companyId": "550e8400-e29b-41d4-a716-446655440000",
"companyFormalName": "Example Pte. Ltd.",
"companyLegalName": "Example Private Limited",
"companyEnglishName": "Example Company",
"companyInformalName": null,
"countryCode": "SGP",
"countryName": "Singapore",
"foundedYear": "2015",
"website": "https://example.com",
"tickerSymbol": null,
"exchangeName": null,
"exchangeCode": null,
"exchangeCountry": null,
"listingDate": null,
"isPublic": false,
"isActive": true,
"taxonomy": [
{
"sectorId": "SEC-001",
"sectorName": "Technology",
"subSectorId": "SUB-001",
"subSectorName": "Software & Services",
"industryId": "IND-001",
"industryName": "Enterprise Software",
"isPrimaryIndustry": true,
"analystMapped": true,
"score": 0.0
},
{
"sectorId": "SEC-002",
"sectorName": "Industrials",
"subSectorId": "SUB-010",
"subSectorName": "Professional Services",
"industryId": "IND-042",
"industryName": "IT Consulting",
"isPrimaryIndustry": false,
"analystMapped": false,
"score": 0.85
}
]
}
],
"page": 1,
"pageSize": 25,
"total": 4000000
}

Get Taxonomy by Company ID

Retrieve taxonomy classification data for a specific company.

GET /companies/{companyId}

Required Scopes: taxonomy:*:read / taxonomy:private:read / taxonomy:public:read

Parameters

NameInTypeRequiredDescription
companyIdpathstringYesCompany unique identifier

Example Request

curl -X GET "https://datafeed.ub-speeda.com/asia/industry-taxonomies/v1/companies/550e8400-e29b-41d4-a716-446655440000" \
-H "Authorization: Bearer {access_token}"

Returns a single Taxonomy Company object. Returns 404 if not found.


Get Companies by Industry

Retrieve companies classified under a specific industry.

GET /industries/{industryId}/companies

Required Scopes: taxonomy:*:read / taxonomy:private:read / taxonomy:public:read, country access scope

Parameters

NameInTypeRequiredDefaultDescription
industryIdpathstringYesIndustry unique identifier
countryquerystringYesISO 3166-1 alpha-3 country code, or ALL
company_typequerystringYesPUBLIC, PRIVATE, or ALL
pagequeryintegerNo1Page number
page_sizequeryintegerNo25Items per page
show_all_industriesquerybooleanNofalseWhen true, returns all industry classifications per company

Example Request

curl -X GET "https://datafeed.ub-speeda.com/asia/industry-taxonomies/v1/industries/IND-001/companies?country=SGP&company_type=ALL&show_all_industries=true" \
-H "Authorization: Bearer {access_token}"

Get Companies by Sub-Sector

Retrieve companies classified under a specific sub-sector (includes all industries within it).

GET /sub-sectors/{subSectorId}/companies

Required Scopes: taxonomy:*:read / taxonomy:private:read / taxonomy:public:read, country access scope

Parameters

NameInTypeRequiredDefaultDescription
subSectorIdpathstringYesSub-sector unique identifier
countryquerystringYesISO 3166-1 alpha-3 country code, or ALL
company_typequerystringYesPUBLIC, PRIVATE, or ALL
pagequeryintegerNo1Page number
page_sizequeryintegerNo25Items per page
show_all_industriesquerybooleanNofalseWhen true, returns all classifications per company

Example Request

curl -X GET "https://datafeed.ub-speeda.com/asia/industry-taxonomies/v1/sub-sectors/SUB-001/companies?country=SGP&company_type=PRIVATE&page=1&page_size=50" \
-H "Authorization: Bearer {access_token}"

Get Companies by Sector

Retrieve companies classified under a specific sector (includes all sub-sectors and industries within it).

GET /sectors/{sectorId}/companies

Required Scopes: taxonomy:*:read / taxonomy:private:read / taxonomy:public:read, country access scope

Parameters

NameInTypeRequiredDefaultDescription
sectorIdpathstringYesSector unique identifier
countryquerystringYesISO 3166-1 alpha-3 country code, or ALL
company_typequerystringYesPUBLIC, PRIVATE, or ALL
pagequeryintegerNo1Page number
page_sizequeryintegerNo25Items per page
show_all_industriesquerybooleanNofalseWhen true, returns all classifications per company

Example Request

curl -X GET "https://datafeed.ub-speeda.com/asia/industry-taxonomies/v1/sectors/SEC-001/companies?country=SGP&company_type=ALL&page=1&page_size=25" \
-H "Authorization: Bearer {access_token}"

Get Taxonomy Tree

Retrieve the complete taxonomy hierarchy — all sectors, sub-sectors, and industries.

GET /tree

Required Scopes: taxonomy:*:read / taxonomy:private:read / taxonomy:public:read

Example Request

curl -X GET "https://datafeed.ub-speeda.com/asia/industry-taxonomies/v1/tree" \
-H "Authorization: Bearer {access_token}"

Example Response

[
{
"sectorId": "SEC-001",
"sectorName": "Technology",
"subSectors": [
{
"subSectorId": "SUB-001",
"subSectorName": "Software & Services",
"description": "Companies engaged in software development, IT services, and related activities",
"industries": [
{
"industryId": "IND-001",
"industryName": "Enterprise Software",
"description": "Developers and distributors of enterprise application software"
},
{
"industryId": "IND-002",
"industryName": "SaaS & Cloud Services",
"description": "Software-as-a-service and cloud computing providers"
}
]
},
{
"subSectorId": "SUB-002",
"subSectorName": "Hardware & Semiconductors",
"description": "Companies involved in hardware manufacturing and semiconductor design",
"industries": [
{
"industryId": "IND-003",
"industryName": "Semiconductor Equipment",
"description": "Manufacturers of semiconductor fabrication equipment"
}
]
}
]
}
]