# Jameda Doctor Details

Get detailed doctor information, reviews, and ratings from Jameda. The doctor_url parameter accepts multiple formats: full URL (https://www.jameda.de/dr-name/specialty/city), path with leading slash (/dr-name/specialty/city), or path without leading slash (dr-name/specialty/city). All formats are normalized internally.

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

## 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 |
| --- | --- | --- | --- |
| `doctor_url` | string | Yes | Doctor URL path or full URL (e.g., /dr-name/specialty/city or https://www.jameda.de/dr-name/specialty/city) |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/jameda/doctor-details?doctor_url=%2Fjosef-luszpinski%2Fzahnarzt%2Fberlin"
```

## Example response

```json
{
    "success": true,
    "data": [],
    "meta": {
        "url": "https://www.jameda.de/josef-luszpinski/zahnarzt/berlin",
        "duration_ms": 123.45,
        "scraped_at": "2026-01-01T00:00:00Z"
    }
}
```

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