Endpoint Playground
Test Crawlora's Ashby 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/ashby/board?org=openai" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| org | string | Yes | openai | Ashby org slug (careers URL) |
| include_compensation | boolean | No | Include compensation summary |
{
"code": 200,
"msg": "OK",
"data": {
"provider": "ashby",
"company": "ramp",
"count": 127,
"total": 127,
"jobs": [
{
"provider": "ashby",
"id": "e1",
"title": "Technical Consultant",
"company": "ramp",
"department": "GTM",
"location": "New York",
"remote": false,
"employment_type": "FullTime",
"url": "https://jobs.ashbyhq.com/ramp/e1",
"compensation": "$151K – $231K • Offers Equity",
"compensation_min": 151000,
"compensation_max": 231000,
"compensation_currency": "USD",
"posted_at": "2026-07-05T00:00:00Z"
}
],
"source_url": "https://api.ashbyhq.com/posting-api/job-board/ramp?includeCompensation=true"
}
}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 an organization's public Ashby board postings with inline detail (description, compensation when include_compensation=true). The org is the Ashby slug from its careers URL. An unknown org returns an empty board (Ashby does not 404). Credential-free public ATS JSON.
{
"code": 200,
"msg": "OK",
"data": {
"provider": "ashby",
"company": "ramp",
"count": 127,
"total": 127,
"jobs": [
{
"provider": "ashby",
"id": "e1",
"title": "Technical Consultant",
"company": "ramp",
"department": "GTM",
"location": "New York",
"remote": false,
"employment_type": "FullTime",
"url": "https://jobs.ashbyhq.com/ramp/e1",
"compensation": "$151K – $231K • Offers Equity",
"compensation_min": 151000,
"compensation_max": 231000,
"compensation_currency": "USD",
"posted_at": "2026-07-05T00:00:00Z"
}
],
"source_url": "https://api.ashbyhq.com/posting-api/job-board/ramp?includeCompensation=true"
}
}curl "https://api.crawlora.net/api/v1/jobs/ashby/board?org=<org>" \
-H "x-api-key: $CRAWLORA_API_KEY"