v1
latestOpenAPI 3.1.02026-07-2466150275.0 KBIndustry
Get Industry Types and Trades
Get a list of all industries, industry types and trades.
This gives a de-normalized list of all active industry records, the associated industry type records, and the associated trade records. Effectively this is the result of left-join of the industry, industry type, trade hierarchy.
get/v1/industry/type-trade/
Query parameters
industry_idinteger nullable
industry_type_idinteger nullable
Response
Successful Response
Example response
{
"data": [
{
"industryId": 1,
"industryName": "Construction",
"industrySlug": "construction",
"industryTypeId": 1,
"industryTypeName": "Sub Contractor",
"industryTypeSlug": "sub_contractor",
"tradeId": 12,
"tradeName": "Architect",
"tradeSlug": "architect"
}
]
}