# mobile.de Dealer Rating API Documentation

Retrieve the proved dealer result total and mobile.de tenure value. This endpoint does not return textual reviews.

- **Documentation:** [https://scrappa.co/docs/mobile-de-api/mobile_de_dealer_rating](https://scrappa.co/docs/mobile-de-api/mobile_de_dealer_rating)
- **API group:** mobile.de API
- **Endpoint:** `GET https://scrappa.co/api/mobile-de/v1/dealer-rating`

## 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 |
| --- | --- | --- | --- |
| `dealer_id` | string | Yes | Dealer identifier returned by a listing. |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/mobile-de/v1/dealer-rating?dealer_id=dealer-123"
```

## Example response

```json
{
    "success": true,
    "data": {
        "rating": {
            "numResultsTotal": 120,
            "withMobileSince": "2017-06"
        }
    },
    "meta": {
        "endpoint_family": "dealer_rating"
    }
}
```

## Errors

| Status | Error | Description |
| --- | --- | --- |
| 404 | Listing Not Found | The requested listing is no longer available. This response is not billable. |
| 422 | Validation Error | A public parameter or range is invalid. This response is not billable. |
| 502 | Invalid Source Response | The marketplace returned an invalid response. This response is not billable. |
| 503 | Service Unavailable | The service could not obtain a complete result. This response is not billable. |

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