# Google Jobs Search

Search and scrape Google Jobs listings with q, hl/gl, Google domain, uds filters, and pagination options when available. For use cases, free testing, and pricing, see the Google Jobs API overview.

- **Documentation:** [https://scrappa.co/docs/google-jobs-api/google_jobs](https://scrappa.co/docs/google-jobs-api/google_jobs)
- **API group:** Google Jobs API
- **Endpoint:** `GET https://scrappa.co/api/google/jobs`

## Authentication

Send your Scrappa API key in the `X-API-KEY` request header. Paid endpoints also support accountless x402 payments when called without an API key.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `q` | string | Yes | Job search query |
| `lrad` | integer | No | Search radius in kilometres: 5, 10, 25, 50 or 100. |
| `gl` | string | No | Country code for geographic targeting (2 letters, e.g. de). |
| `google_domain` | string | No | Google domain to query (e.g. google.com, google.de). |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/google/jobs?q=software+engineer"
```

## Example response

```json
{
    "jobs": [
        {
            "title": "Software Engineer",
            "company": "Example Corp"
        }
    ]
}
```

## More Scrappa resources

- [API documentation](https://scrappa.co/docs)
- [Full LLM-readable API reference](https://scrappa.co/llms-full.txt)
- [OpenAPI specification](https://scrappa.co/docs/api.json)
- [Pricing](https://scrappa.co/pricing)
