# Jameda Search

Search for doctors on Jameda by specialty or doctor name with optional location.

- **Documentation:** [https://scrappa.co/docs/jameda-api/jameda_search](https://scrappa.co/docs/jameda-api/jameda_search)
- **API group:** Jameda API
- **Endpoint:** `GET https://scrappa.co/api/jameda/search`

## 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 | Search query (specialty or doctor name). When building URLs manually, encode special characters (ä=%C3%A4, ö=%C3%B6, ü=%C3%BC). Libraries like URLSearchParams and http_build_query handle this automatically. |
| `loc` | string | No | City or location (optional). When building URLs manually, encode special characters (ä=%C3%A4, ö=%C3%B6, ü=%C3%BC). Libraries like URLSearchParams and http_build_query handle this automatically. |
| `page` | integer | No | Page number (1-500) |
| `per_page` | integer | No | Results per page (1-28) |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/jameda/search?q=Zahnarzt&loc=Berlin"
```

## Example response

```json
{
    "success": true,
    "data": [],
    "meta": {
        "page": 1,
        "duration_ms": 123.45
    }
}
```

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