Endpoint Playground
Test Crawlora's Google Jobs 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" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| option (body) | object | Yes | Google Jobs search payload |
{
"code": 200,
"msg": "OK",
"data": {
"query": "software engineer",
"location": "San Francisco, CA",
"page": 1,
"results": [
{
"title": "Software Engineer",
"snippet": "Software Engineer · Example"
}
]
}
}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 normalized Google Jobs results parsed from public Google web responses.
{
"code": 200,
"msg": "OK",
"data": {
"query": "software engineer",
"location": "San Francisco, CA",
"page": 1,
"results": [
{
"title": "Software Engineer",
"snippet": "Software Engineer · Example"
}
]
}
}curl "https://api.crawlora.net/api/v1/google/jobs" \
-H "x-api-key: $CRAWLORA_API_KEY" \
-X POST \
--data "{}"