Endpoint Playground
Test Crawlora's Greenhouse Board Listing 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/board?token=stripe" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| token | string | Yes | stripe | Greenhouse board token (careers URL slug) |
| content | boolean | No | Include full HTML description per job |
{
"code": 200,
"msg": "OK",
"data": {
"provider": "greenhouse",
"company": "stripe",
"count": 511,
"total": 511,
"jobs": [
{
"provider": "greenhouse",
"id": "5501234",
"title": "Account Executive",
"company": "Stripe",
"location": "US Remote",
"url": "https://stripe.com/jobs/listing/5501234",
"req_id": "R-1",
"posted_at": "2026-07-01T00:00:00Z"
}
],
"source_url": "https://boards-api.greenhouse.io/v1/boards/stripe/jobs"
}
}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.
Lists a company's public Greenhouse board postings, normalized to the shared Job shape. Set content=true to include each job's full HTML description in one call. The token is the company's Greenhouse board slug from its careers URL. Credential-free public ATS JSON.
{
"code": 200,
"msg": "OK",
"data": {
"provider": "greenhouse",
"company": "stripe",
"count": 511,
"total": 511,
"jobs": [
{
"provider": "greenhouse",
"id": "5501234",
"title": "Account Executive",
"company": "Stripe",
"location": "US Remote",
"url": "https://stripe.com/jobs/listing/5501234",
"req_id": "R-1",
"posted_at": "2026-07-01T00:00:00Z"
}
],
"source_url": "https://boards-api.greenhouse.io/v1/boards/stripe/jobs"
}
}curl "https://api.crawlora.net/api/v1/jobs/greenhouse/board?token=<token>" \
-H "x-api-key: $CRAWLORA_API_KEY"