Endpoint Playground
Test Crawlora's Greenhouse Single Job 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/greenhouse/job?token=stripe&id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| token | string | Yes | stripe | Greenhouse board token |
| id | string | Yes | Greenhouse job id |
{
"code": 200,
"msg": "OK",
"data": {
"provider": "greenhouse",
"id": "5501234",
"title": "Account Executive",
"company": "Stripe",
"department": "Sales",
"location": "US Remote",
"url": "https://stripe.com/jobs/listing/5501234",
"description_text": "About the role ..."
}
}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.
Returns a single Greenhouse job with its full HTML/text description, department, and offices. Credential-free public ATS JSON.
{
"code": 200,
"msg": "OK",
"data": {
"provider": "greenhouse",
"id": "5501234",
"title": "Account Executive",
"company": "Stripe",
"department": "Sales",
"location": "US Remote",
"url": "https://stripe.com/jobs/listing/5501234",
"description_text": "About the role ..."
}
}curl "https://api.crawlora.net/api/v1/jobs/greenhouse/job?token=<token>&id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"