Endpoint Playground
Test Crawlora's Facet the jobs dataset API with realistic prefilled filters. Generate a cURL request, inspect stored structured JSON records, and open the full docs or pricing page when you are ready to integrate dataset search. Dataset Playground requests query indexed data and do not apply proxy routing.
curl "https://api.crawlora.net/api/v1/datasets/jobs/facets" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| size | integer | No | Buckets per facet, default 20, max 100 |
{
"code": 200,
"msg": "OK",
"data": {
"facets": {
"top_companies": [
{
"key": "Stripe",
"count": 511
}
],
"by_provider": [
{
"key": "greenhouse",
"count": 120000
}
],
"by_department": [
{
"key": "Engineering",
"count": 40000
}
],
"by_location": [
{
"key": "Remote",
"count": 30000
}
],
"by_employment_type": [
{
"key": "Full-time",
"count": 180000
}
],
"by_seniority": [
{
"key": "mid",
"count": 150000
},
{
"key": "entry",
"count": 65000
},
{
"key": "senior",
"count": 35000
}
],
"by_job_family": [
{
"key": "Information and communications technology professionals",
"count": 42000
}
],
"remote_open": 30000,
"total_open": 250000
}
}
}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.
Aggregations over all open postings: top companies hiring, breakdown by provider (every provider filterable via /datasets/jobs/search's `provider` param), department, location, employment type, skill, benefit, education, security clearance, seniority, and ESCO/ISCO job family, plus the remote share — a live hiring-market snapshot. Seniority uses one mutually exclusive value: `entry`, `mid`, or `senior`; ambiguous occupations are omitted from job-family buckets. Dataset endpoints are built for repeatable structured search, facets, geo queries, pagination, and item lookup over indexed records. They do not trigger live scraping or proxy routing.
{
"code": 200,
"msg": "OK",
"data": {
"facets": {
"top_companies": [
{
"key": "Stripe",
"count": 511
}
],
"by_provider": [
{
"key": "greenhouse",
"count": 120000
}
],
"by_department": [
{
"key": "Engineering",
"count": 40000
}
],
"by_location": [
{
"key": "Remote",
"count": 30000
}
],
"by_employment_type": [
{
"key": "Full-time",
"count": 180000
}
],
"by_seniority": [
{
"key": "mid",
"count": 150000
},
{
"key": "entry",
"count": 65000
},
{
"key": "senior",
"count": 35000
}
],
"by_job_family": [
{
"key": "Information and communications technology professionals",
"count": 42000
}
],
"remote_open": 30000,
"total_open": 250000
}
}
}curl "https://api.crawlora.net/api/v1/datasets/jobs/facets" \
-H "x-api-key: $CRAWLORA_API_KEY"