Endpoint Playground
Test Crawlora's Google Jobs 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/google-jobs/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Search query | |
| location | string | No | Location filter (free text) | |
| page | integer | No | Page number, 1-based |
{
"code": 200,
"msg": "OK",
"data": {
"query": "software engineer",
"location": "Singapore",
"page": 1,
"total": 102,
"jobs": [
{
"id": "85207000467546822",
"title": "Software Engineer, Embedded Software, Silicon",
"company": "Google",
"location": "Singapore",
"locations": [
"Singapore"
],
"country": "SG",
"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=..."
}
],
"source_url": "https://www.google.com/about/careers/applications/jobs/results/?location=Singapore&q=software+engineer"
}
}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 Google's public careers site (careers.google.com) via its server-rendered search page's embedded job data. Each result includes the description, responsibilities, and qualifications inline. Page size is fixed by Google at 20 results.
{
"code": 200,
"msg": "OK",
"data": {
"query": "software engineer",
"location": "Singapore",
"page": 1,
"total": 102,
"jobs": [
{
"id": "85207000467546822",
"title": "Software Engineer, Embedded Software, Silicon",
"company": "Google",
"location": "Singapore",
"locations": [
"Singapore"
],
"country": "SG",
"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=..."
}
],
"source_url": "https://www.google.com/about/careers/applications/jobs/results/?location=Singapore&q=software+engineer"
}
}curl "https://api.crawlora.net/api/v1/google-jobs/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"