Endpoint Playground
Test Crawlora's Gem 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/gem/board?company=agora" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| company | string | Yes | agora | Gem vanity URL slug (careers URL) |
{
"code": 200,
"msg": "OK",
"data": {
"provider": "gem",
"company": "Aeropay",
"count": 3,
"total": 3,
"jobs": [
{
"provider": "gem",
"id": "am9icG9zdDr-LOz9Mi-MNVOdeZVBJ4-T",
"title": "Head of Finance",
"company": "Aeropay",
"location": "Chicago, USA",
"workplace_type": "hybrid",
"employment_type": "Full-time",
"url": "https://jobs.gem.com/aeropay/am9icG9zdDr-LOz9Mi-MNVOdeZVBJ4-T",
"apply_url": "https://jobs.gem.com/aeropay/am9icG9zdDr-LOz9Mi-MNVOdeZVBJ4-T",
"posted_at": "2026-06-05T18:55:33Z",
"description_text": "About the role...",
"compensation": "Compensation The base pay range for this role is $250,000 – $275,000 per year.",
"compensation_min": 250000,
"compensation_max": 275000,
"compensation_currency": "USD"
}
],
"source_url": "https://jobs.gem.com/api/public/graphql/batch?boardId=aeropay"
}
}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 Gem (gem.com) board postings with inline detail (full HTML description, and compensation when the company publishes a pay range). The company is the Gem vanity URL slug from its careers URL. Credential-free public GraphQL.
{
"code": 200,
"msg": "OK",
"data": {
"provider": "gem",
"company": "Aeropay",
"count": 3,
"total": 3,
"jobs": [
{
"provider": "gem",
"id": "am9icG9zdDr-LOz9Mi-MNVOdeZVBJ4-T",
"title": "Head of Finance",
"company": "Aeropay",
"location": "Chicago, USA",
"workplace_type": "hybrid",
"employment_type": "Full-time",
"url": "https://jobs.gem.com/aeropay/am9icG9zdDr-LOz9Mi-MNVOdeZVBJ4-T",
"apply_url": "https://jobs.gem.com/aeropay/am9icG9zdDr-LOz9Mi-MNVOdeZVBJ4-T",
"posted_at": "2026-06-05T18:55:33Z",
"description_text": "About the role...",
"compensation": "Compensation The base pay range for this role is $250,000 – $275,000 per year.",
"compensation_min": 250000,
"compensation_max": 275000,
"compensation_currency": "USD"
}
],
"source_url": "https://jobs.gem.com/api/public/graphql/batch?boardId=aeropay"
}
}curl "https://api.crawlora.net/api/v1/jobs/gem/board?company=<company>" \
-H "x-api-key: $CRAWLORA_API_KEY"