Endpoint Playground
Test Crawlora's Company Hiring Signals API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/jobs/hiring-signals?provider=greenhouse" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| provider | string | Yes | greenhouse | ATS provider |
| token | string | No | greenhouse board token | |
| company | string | No | lever / smartrecruiters / workable / recruitee / rippling / personio / teamtailor / gem / pinpoint company slug | |
| org | string | No | ashby org slug | |
| tenant | string | No | workday / eightfold tenant | |
| datacenter | string | No | workday datacenter shard | |
| site | string | No | workday / oracle career site | |
| host | string | No | oracle cloud host (*.oraclecloud.com) | |
| board | string | No | ukg job-board UUID | |
| domain | string | No | icims careers domain / eightfold organization domain |
{
"code": 200,
"msg": "OK",
"data": {
"provider": "greenhouse",
"company": "stripe",
"total_open_roles": 511,
"sampled_roles": 511,
"by_department": [
{
"name": "Solutions Architecture",
"count": 19
}
],
"by_location": [
{
"name": "Dublin",
"count": 35
}
],
"top_titles": [
{
"name": "Software Engineer",
"count": 4
}
],
"remote_count": 0,
"remote_pct": 0,
"new_last_7d": 40,
"new_last_30d": 138,
"as_of": "2026-07-11T00:00:00Z",
"source_url": "https://boards-api.greenhouse.io/v1/boards/stripe/departments"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Aggregates a company's ATS board into a hiring snapshot: total open roles, breakdowns by department/location/title, remote share, and how many roles are new in the last 7/30 days — a leading indicator of company growth. Supply provider plus that provider's slug params (token / company / org / tenant+datacenter+site / domain). Breakdowns are computed over the fetched postings. Credential-free public ATS JSON.
{
"code": 200,
"msg": "OK",
"data": {
"provider": "greenhouse",
"company": "stripe",
"total_open_roles": 511,
"sampled_roles": 511,
"by_department": [
{
"name": "Solutions Architecture",
"count": 19
}
],
"by_location": [
{
"name": "Dublin",
"count": 35
}
],
"top_titles": [
{
"name": "Software Engineer",
"count": 4
}
],
"remote_count": 0,
"remote_pct": 0,
"new_last_7d": 40,
"new_last_30d": 138,
"as_of": "2026-07-11T00:00:00Z",
"source_url": "https://boards-api.greenhouse.io/v1/boards/stripe/departments"
}
}curl "https://api.crawlora.net/api/v1/jobs/hiring-signals?provider=<provider>" \
-H "x-api-key: $CRAWLORA_API_KEY"