Endpoint Playground
Test Crawlora's Phenom People Job-Search 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/phenom/board?domain=<domain>&sort=relevant" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| domain | string | Yes | Phenom tenant careers domain (careers URL) | |
| keywords | string | No | Free-text keyword search | |
| location | string | No | Filter: location contains | |
| category | string | No | Filter: category contains | |
| sort | string | No | relevant | Sort order, default relevant |
| offset | integer | No | Page offset, default 0 | |
| limit | integer | No | Page size hint, default 10, max 100 (some tenants ignore this and return their own configured page size regardless) |
{
"code": 200,
"msg": "OK",
"data": {
"provider": "phenom",
"company": "careers.whataburger.com",
"count": 10,
"total": 4773,
"jobs": [
{
"provider": "phenom",
"id": "JR10002958",
"title": "Restaurant Team Member, Overnight Shift - Unit 78",
"company": "Whataburger Restaurants",
"department": "Restaurant Team Member",
"location": "College Station, TX, United States of America",
"location_city": "College Station",
"location_state": "TX",
"location_country": "United States of America",
"employment_type": "Part time",
"url": "https://careers.whataburger.com/us/en/job/JR10002958",
"apply_url": "https://whataburger.wd5.myworkdayjobs.com/WAB_CAREERS/job/105-Dominik-Dr-College-Station-TX-77840-3314/Restaurant-Team-Member--Overnight-Shift---Unit-78_JR10002958/apply",
"req_id": "JR10002958",
"posted_at": "2026-08-21T00:00:00Z",
"description_text": "Welcome to Whataburger Careers…"
}
],
"source_url": "https://careers.whataburger.com/us/en/search-results?from=0&s=0&size=10"
}
}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.
Searches a company's public Phenom People career site (a white-labeled domain such as careers.whataburger.com or jobs.cvshealth.com — Phenom serves the search-results page as server-rendered HTML with the job data embedded inline, not a JSON API, but this is still credential-free public data with no auth, cookie, or session required). domain is the tenant's careers domain from its careers URL. Paged via offset/limit; limit is a best-effort page-size hint some tenants ignore, so count always reflects what actually came back.
{
"code": 200,
"msg": "OK",
"data": {
"provider": "phenom",
"company": "careers.whataburger.com",
"count": 10,
"total": 4773,
"jobs": [
{
"provider": "phenom",
"id": "JR10002958",
"title": "Restaurant Team Member, Overnight Shift - Unit 78",
"company": "Whataburger Restaurants",
"department": "Restaurant Team Member",
"location": "College Station, TX, United States of America",
"location_city": "College Station",
"location_state": "TX",
"location_country": "United States of America",
"employment_type": "Part time",
"url": "https://careers.whataburger.com/us/en/job/JR10002958",
"apply_url": "https://whataburger.wd5.myworkdayjobs.com/WAB_CAREERS/job/105-Dominik-Dr-College-Station-TX-77840-3314/Restaurant-Team-Member--Overnight-Shift---Unit-78_JR10002958/apply",
"req_id": "JR10002958",
"posted_at": "2026-08-21T00:00:00Z",
"description_text": "Welcome to Whataburger Careers…"
}
],
"source_url": "https://careers.whataburger.com/us/en/search-results?from=0&s=0&size=10"
}
}curl "https://api.crawlora.net/api/v1/jobs/phenom/board?domain=<domain>" \
-H "x-api-key: $CRAWLORA_API_KEY"