Endpoint Playground
Test Crawlora's Google 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/google-jobs/job?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Numeric Google job id |
{
"code": 200,
"msg": "OK",
"data": {
"id": "85207000467546822",
"title": "Software Engineer, Embedded Software, Silicon",
"company": "Google",
"location": "New Taipei, Banqiao District, New Taipei City, Taiwan",
"locations": [
"New Taipei, Banqiao District, New Taipei City, Taiwan"
],
"country": "TW",
"description": "Google's software engineers develop the next-generation technologies...",
"responsibilities": "Design and implement the validation software for Google Tensor...",
"minimum_qualifications": "Bachelor's degree or equivalent practical experience. 2 years of experience with software development...",
"preferred_qualifications": "Experience in embedded systems design, development, and debugging...",
"posted_at": "2026-07-22T14:10:44Z",
"url": "https://www.google.com/about/careers/applications/jobs/results/85207000467546822-software-engineer-embedded-software-silicon",
"apply_url": "https://www.google.com/about/careers/applications/signin?jobId=..."
}
}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 Google Careers posting by its numeric job id (the `id` field returned by search). Parsed from careers.google.com's server-rendered job detail page.
{
"code": 200,
"msg": "OK",
"data": {
"id": "85207000467546822",
"title": "Software Engineer, Embedded Software, Silicon",
"company": "Google",
"location": "New Taipei, Banqiao District, New Taipei City, Taiwan",
"locations": [
"New Taipei, Banqiao District, New Taipei City, Taiwan"
],
"country": "TW",
"description": "Google's software engineers develop the next-generation technologies...",
"responsibilities": "Design and implement the validation software for Google Tensor...",
"minimum_qualifications": "Bachelor's degree or equivalent practical experience. 2 years of experience with software development...",
"preferred_qualifications": "Experience in embedded systems design, development, and debugging...",
"posted_at": "2026-07-22T14:10:44Z",
"url": "https://www.google.com/about/careers/applications/jobs/results/85207000467546822-software-engineer-embedded-software-silicon",
"apply_url": "https://www.google.com/about/careers/applications/signin?jobId=..."
}
}curl "https://api.crawlora.net/api/v1/google-jobs/job?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"