Endpoint Playground
Test Crawlora's Tesla Jobs single posting 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/job?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Tesla job id |
{
"code": 200,
"msg": "OK",
"data": {
"id": "224501",
"title": "AI Engineer, Manipulation, Optimus",
"department": "Tesla AI",
"job_family": "AI",
"location": "Palo Alto, California",
"state": "CA",
"country": "US",
"employment_type": "Full-time",
"description": "Tesla AI is solving robust embodied intelligence through humanoid robots...",
"responsibilities": "Design and develop our learned robotic manipulation software stack and algorithms...",
"requirements": "Production quality modern C++ or Python...",
"url": "/careers/search/job/ai-engineer-manipulation-optimus-224501"
}
}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.
Returns one Tesla Careers posting by its numeric job id (the `id` field returned by the list endpoint). Parsed from tesla.com's own job detail JSON endpoint.
{
"code": 200,
"msg": "OK",
"data": {
"id": "224501",
"title": "AI Engineer, Manipulation, Optimus",
"department": "Tesla AI",
"job_family": "AI",
"location": "Palo Alto, California",
"state": "CA",
"country": "US",
"employment_type": "Full-time",
"description": "Tesla AI is solving robust embodied intelligence through humanoid robots...",
"responsibilities": "Design and develop our learned robotic manipulation software stack and algorithms...",
"requirements": "Production quality modern C++ or Python...",
"url": "/careers/search/job/ai-engineer-manipulation-optimus-224501"
}
}curl "https://api.crawlora.net/api/v1/tesla-jobs/job?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"