Public Playground

Preview the endpoint before sending a live request

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.

Playground

Search Google Jobs API Playground

Returns normalized Google Jobs results parsed from public Google web responses.

POSTapiKey3 credits/requestgoogle.JobsResponseGoogle

Endpoint

Choose one catalog endpoint for this request.

13 shown
POSTapiKey3 credits/requestgoogle.JobsResponseGoogle
POST /google/jobs

Search Google Jobs

Returns normalized Google Jobs results parsed from public Google web responses.

API key required. Paste a full key or rotate one from the API Keys page.

Set up API key
View docs

API key

API key required for live requests. Your key is only used to send requests from this Playground.

not configured

Active Playground key: not configured

Manage API keys in Console

Body (google.JobsOption)

Body preview
{
  "location": "San Francisco, CA",
  "page": 1,
  "query": "software engineer"
}

Add an API key to send a live request.

If an active API key is configured, Copy cURL includes it. Share links never include API keys.

View docs
Sample responsePOST

Shown before your first request. Add an API key and send a request to see the live response, status, latency, and headers.

{
  "code": 200,
  "msg": "OK",
  "data": {
    "query": "software engineer",
    "location": "San Francisco, CA",
    "page": 1,
    "results": [
      {
        "title": "Software Engineer",
        "snippet": "Software Engineer · Example"
      }
    ]
  }
}

Endpoint details

Returns normalized Google Jobs results parsed from public Google web responses.

Method
POST
Path
/google/jobs
Authentication
apiKey
Credit cost
3 credits/request
Platform
Google
Parameters
2 documented fields

Request parameters

option:bodyx-api-key:header

Response schema fields

locationpagequeryresultsresults[].companyresults[].employmentresults[].locationresults[].posted_atresults[].snippetresults[].sourceresults[].titleresults[].url

Sample response summary

{
  "code": 200,
  "msg": "OK",
  "data": {
    "query": "software engineer",
    "location": "San Francisco, CA",
    "page": 1,
    "results": [
      {
        "title": "Software Engineer",
        "snippet": "Software Engineer · Example"
      }
    ]
  }
}

cURL example

curl "https://api.crawlora.net/api/v1/google/jobs" \
  -H "x-api-key: <api-key>" \
  -X POST \
  --data "{}"