Endpoint Playground
Test Crawlora's Nearby 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/nearby?lat=<lat>&lon=<lon>&provider=greenhouse" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| lat | number | Yes | Latitude, -90..90 | |
| lon | number | Yes | Longitude, -180..180 | |
| radius_km | number | No | Search radius in km, default 50, max 500 | |
| provider | string | No | greenhouse | Provider filter |
| include_closed | boolean | No | Include closed/filled roles (default false) | |
| page | integer | No | Page number, default 1 | |
| page_size | integer | No | Page size, default 20, max 100 |
{
"code": 200,
"msg": "OK",
"data": {
"total": 1,
"page": 1,
"page_size": 20,
"jobs": [
{
"posting_id": "greenhouse:ab12cd:9f0e",
"provider": "greenhouse",
"company": "Stripe",
"title": "Staff Engineer",
"location": "San Francisco, CA",
"remote": false,
"posted_at": "2026-07-01T00:00:00Z"
}
]
}
}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.
Finds crawled job postings within `radius_km` of a `lat`/`lon`, nearest first. Only geocoded postings participate (the geo-enrich worker back-fills coordinates from each posting's location). Open roles only by default. provider enum: `greenhouse`, `lever`, `ashby`, `workday`, `smartrecruiters`, `workable`, `recruitee`, `rippling`, `personio`, `teamtailor`, `oracle`, `ukg`, `icims`, `eightfold`, `gem`, `pinpoint`, `amazon-jobs`, `apple-jobs`, `google-jobs`, `meta-jobs`, `tesla-jobs`. 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": {
"total": 1,
"page": 1,
"page_size": 20,
"jobs": [
{
"posting_id": "greenhouse:ab12cd:9f0e",
"provider": "greenhouse",
"company": "Stripe",
"title": "Staff Engineer",
"location": "San Francisco, CA",
"remote": false,
"posted_at": "2026-07-01T00:00:00Z"
}
]
}
}curl "https://api.crawlora.net/api/v1/datasets/jobs/nearby?lat=<lat>&lon=<lon>" \
-H "x-api-key: $CRAWLORA_API_KEY"