Skip to main content
POST
/
v1
/
businesses
/
workforce_trends
/
bulk_enrich
Workforce Trends
curl --request POST \
  --url https://api.explorium.ai/v1/businesses/workforce_trends/bulk_enrich \
  --header 'Content-Type: application/json' \
  --header 'api_key: <api-key>' \
  --data '{
  "request_context": {},
  "parameters": {},
  "business_ids": [
    "<string>"
  ]
}'
{
  "response_context": {
    "correlation_id": "<string>",
    "request_status": "success",
    "time_took_in_seconds": 123
  },
  "data": [
    {
      "business_id": "<string>",
      "data": {
        "change_in_real_estate_roles": 123,
        "perc_design_roles": 123,
        "profiles_found_per_quarter": 123,
        "perc_sales_roles": 123,
        "perc_hr_roles": 123,
        "perc_operations_roles": 123,
        "perc_pr_roles": 123,
        "perc_health_roles": 123,
        "perc_trades_roles": 123,
        "perc_engineering_roles": 123,
        "perc_finance_roles": 123,
        "perc_customer_service_roles": 123,
        "perc_legal_roles": 123,
        "perc_media_roles": 123,
        "perc_marketing_roles": 123,
        "perc_real_estate_roles": 123,
        "perc_education_roles": 123,
        "change_in_design_roles": 123,
        "change_in_education_roles": 123,
        "change_in_pr_roles": 123,
        "change_in_trades_roles": 123,
        "change_in_customer_service_roles": 123,
        "change_in_health_roles": 123,
        "change_in_operations_roles": 123,
        "change_in_sales_roles": 123,
        "change_in_legal_roles": 123,
        "change_in_roles_divisor": 123,
        "change_in_finance_roles": 123,
        "change_in_media_roles": 123,
        "change_in_hr_roles": 123,
        "change_in_marketing_roles": 123,
        "change_in_engineering_roles": 123,
        "quarters": "2023-11-07T05:31:56Z"
      }
    }
  ],
  "entity_id": "<string>",
  "total_results": 123
}
  • Input: Provide a list of up to 50business_ids.
  • Processing: The system retrieves workforce trends data for all submitted businesses in a single request.
  • Output: A structured response with workforce distribution and hiring/firing trends.
Bash
curl --request POST \
     --url https://api.explorium.ai/v1/businesses/workforce_trends/bulk_enrich \
     --header 'accept: application/json' \
     --header 'api_key: your_api_key_here' \
     --header 'content-type: application/json' \
     --data '{
  "business_ids": [
    "8adce3ca1cef0c986b22310e369a0793",
    "a34bacf839b923770b2c360eefa26748"
  ]
}'
  • Monitor hiring trends to identify workforce expansion.
  • Assess downsizing activity to evaluate business contraction.
  • Benchmark workforce trends against industry peers.
For additional enrichment options, explore related API endpoints below.

Body Params - Try Me Example

business_ids: ["8adce3ca1cef0c986b22310e369a0793",
               "a34bacf839b923770b2c360eefa26748"]

Authorizations

api_key
string
header
required

Body

application/json
business_ids
string[]
required
Required array length: 1 - 50 elements
request_context
object
parameters
object

Response

Successful Response

This is base response model for all responses in partner service.

response_context
object
required
total_results
integer
required
data
BusinessesBulkEnrichRow[WorkforceTrendsOutputSchema] · object[]
entity_id
I