# mobile.de Listing API Documentation

Retrieve safe, rich, nullable vehicle, price, finance, equipment, media, lifecycle, location, delivery, and dealer-summary fields for a listing returned by search.

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

## 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 |
| --- | --- | --- | --- |
| `listing_id` | string | Yes | Listing identifier returned by search. |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/mobile-de/v1/listing?listing_id=123456789"
```

## Example response

```json
{
    "success": true,
    "data": {
        "listing": {
            "listing_id": "123456789",
            "title": "Example vehicle",
            "price": {
                "amount": 24900,
                "currency": "EUR"
            }
        }
    },
    "meta": {
        "endpoint_family": "listing"
    }
}
```

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