# Jameda Doctor Reviews

Get patient reviews and ratings from Jameda. The doctor_url parameter accepts individual doctor profile URLs, plus provider/facility pages under /gesundheitseinrichtungen. Facility reviews include Jameda's authoritative numeric rating when present and a positive/negative sentiment when Jameda exposes enough information to classify it. Use sentiment=negative for the facility's negative review feed.

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

## 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 | Individual doctor URL path or full URL (e.g., /dr-name/specialty/city or https://www.jameda.de/dr-name/specialty/city). Also accepts /gesundheitseinrichtungen facility/provider URLs; include filters[doctor_id] in the fragment when selecting a specific doctor from a facility page. |
| `page` | integer | No | Page number (1-500) |
| `sort` | string | No | Sort order applied locally to available reviews: newest, oldest, highest, lowest |
| `rating` | string | No | Filter by rating (1-5), comma-separated for multiple (e.g., "4,5") |
| `sentiment` | string | No | Filter facility reviews by Jameda sentiment: positive or negative |
| `per_page` | integer | No | Results per page (1-100) applied locally |

## Example request

```bash
#!/bin/bash

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

## Example response

```json
{
    "success": true,
    "data": [],
    "meta": {
        "pagination": {
            "currentPage": 1,
            "totalPages": 5,
            "totalReviews": 50,
            "resultsPerPage": 10,
            "hasNextPage": true,
            "hasPreviousPage": false
        }
    }
}
```

## Errors

| Status | Error | Description |
| --- | --- | --- |
| 422 | The request validation failed | The doctor_url parameter is missing, references an unsupported facility URL, or pagination/filter parameters are outside the accepted ranges. |
| 404 | Doctor not found on Jameda | Jameda confirmed that the requested doctor profile path or resolved reviews feed does not exist. |
| 429 | Failed to fetch reviews from Jameda | The upstream service is temporarily unavailable. Please retry shortly. |
| 500 | An error occurred while processing the reviews request | Scrappa hit an unexpected internal error while processing the Jameda reviews request or parsing the reviews feed. |
| 502 | Failed to parse Jameda doctor profile | The doctor profile was reachable, but Scrappa could not resolve the Jameda doctor ID required by the reviews feed. |
| 503 | Failed to resolve Jameda doctor profile | The upstream service is temporarily unavailable. Please retry shortly. |

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