# Location Search

Search for valid German location identifiers used as input for the Job Search endpoint. Look up locations by postal code (plz) or search term (suchwort) to obtain structured location data.

- **Documentation:** [https://scrappa.co/docs/arbeitsagentur-jobs-api/arbeitsagentur_location_search](https://scrappa.co/docs/arbeitsagentur-jobs-api/arbeitsagentur_location_search)
- **API group:** Arbeitsagentur Jobs API
- **Endpoint:** `GET https://scrappa.co/api/arbeitsagentur/locations`

## 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 |
| --- | --- | --- | --- |
| `plz` | string | No | German postal code to look up (e.g. "10115") |
| `suchwort` | string | No | City or location name to search for (e.g. "Berlin") |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/arbeitsagentur/locations?plz=10115"
```

## 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)
