Endpoint Playground
Test Crawlora's Cross-Provider Company Search 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/company-search?slug=stripe" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | Yes | stripe | Company careers slug to probe |
{
"code": 200,
"msg": "OK",
"data": {
"slug": "stripe",
"count": 1,
"found": [
{
"provider": "greenhouse",
"company": "stripe",
"total_open_roles": 511,
"board_url": "https://boards.greenhouse.io/stripe"
}
]
}
}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.
Probes Greenhouse, Lever, Ashby, SmartRecruiters, Workable, Recruitee, Rippling, Teamtailor, and Pinpoint in parallel for a slug and reports the providers where it resolves to a non-empty board (with the open-role count and board URL). Workday is excluded (its board needs tenant + datacenter + site). Credential-free public ATS JSON.
{
"code": 200,
"msg": "OK",
"data": {
"slug": "stripe",
"count": 1,
"found": [
{
"provider": "greenhouse",
"company": "stripe",
"total_open_roles": 511,
"board_url": "https://boards.greenhouse.io/stripe"
}
]
}
}curl "https://api.crawlora.net/api/v1/jobs/company-search?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"