Endpoint Playground
Test Crawlora's Tesla Jobs 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/tesla-jobs/list" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | No | Filter by title or department, case-insensitive substring match | |
| location | string | No | Filter by location, case-insensitive substring match | |
| page | integer | No | Page number, 1-based | |
| page_size | integer | No | Results per page, up to 100 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "software engineer",
"location": "Palo Alto",
"page": 1,
"page_size": 20,
"total": 112,
"jobs": [
{
"id": "221961",
"title": "Software Engineer, Generalist, AI Inference",
"department": "Tesla AI",
"location": "Palo Alto, California"
}
]
}
}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 Tesla's public careers site (tesla.com/careers) via its own careers-state JSON endpoint. Tesla's own endpoint always returns its entire global job dataset regardless of query parameters; this filters and paginates that snapshot server-side. Listings carry identity/department/location metadata only — call the job endpoint for the full description, responsibilities, and requirements.
{
"code": 200,
"msg": "OK",
"data": {
"query": "software engineer",
"location": "Palo Alto",
"page": 1,
"page_size": 20,
"total": 112,
"jobs": [
{
"id": "221961",
"title": "Software Engineer, Generalist, AI Inference",
"department": "Tesla AI",
"location": "Palo Alto, California"
}
]
}
}curl "https://api.crawlora.net/api/v1/tesla-jobs/list" \
-H "x-api-key: $CRAWLORA_API_KEY"