POST
/
intents
/
leads
/
find_new_hires
curl --request POST \
  --url https://app.prontohq.com/api/v2/intents/leads/find_new_hires \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "webhook_url": "https://prontohq.com/webhooks/new-hires",
  "included_job_titles": [
    "Product Manager",
    "Sales Director"
  ],
  "excluded_job_titles": [
    "Intern",
    "Contractor"
  ],
  "company_size": [
    "1-10",
    "11-50"
  ],
  "included_locations": [
    "123"
  ],
  "excluded_locations": [
    "456"
  ],
  "included_industries": [
    "3812"
  ],
  "excluded_industries": [
    "3813"
  ]
}'
{
  "message": "New hires tracking created successfully. Next run will be in 1 week."
}

Track when companies make new hires matching specific ICP. This endpoint creates a weekly tracking task that will notify you through a webhook when matching new hires are found.

Use Cases

  • Monitor when competitors hire for specific roles
  • Track hiring trends in your target market
  • Identify companies expanding specific departments
  • Get notified about potential customer expansion signals

Location IDs Reference

Location IDs used in this endpoint can be found in our reference spreadsheet. If you need additional locations added to this list, please contact our support team.

Authorizations

X-API-KEY
string
header
required

Your API key

Body

application/json

Response

201
application/json

Successfully created new hires intent

The response is of type object.