Skip to main content
GET
/
v2
/
jobs
/
data
/
subindustries
curl -X GET "https://api.hirebase.org/v2/jobs/data/subindustries?industry=Healthcare" \
  -H "x-api-key: YOUR_API_KEY"
{
  "subindustries": [
    "Hospitals",
    "Medical Practices",
    "Pharmaceuticals",
    "Biotechnology",
    "Medical Devices",
    "Health Insurance",
    "Mental Health Care",
    "..."
  ]
}

Documentation Index

Fetch the complete documentation index at: https://www.hirebase.org/docs/llms.txt

Use this file to discover all available pages before exploring further.

Returns every subindustry that belongs to a given industry. Use these values with the sub_industry filter on search endpoints.

Endpoint

GET /v2/jobs/data/subindustries

Authentication

x-api-key
string
required
Your Hirebase API key

Query Parameters

industry
string
required
The industry to fetch subindustries for. Must be a valid top-level industry from List Industries (e.g., "Healthcare").

Response

subindustries
string[]
Array of subindustry strings for the requested industry.
curl -X GET "https://api.hirebase.org/v2/jobs/data/subindustries?industry=Healthcare" \
  -H "x-api-key: YOUR_API_KEY"
{
  "subindustries": [
    "Hospitals",
    "Medical Practices",
    "Pharmaceuticals",
    "Biotechnology",
    "Medical Devices",
    "Health Insurance",
    "Mental Health Care",
    "..."
  ]
}

Error Responses

400
Bad Request
industry query parameter is missing.
401
Unauthorized
Invalid or missing API key.
404
Not Found
The requested industry does not exist. See List Industries for valid values.