# Idealista Map Zone

Returns a MultiPolygon for a zone slug. Unknown slugs return 404.

- **Documentation:** [https://scrappa.co/docs/idealista-api/idealista_map_zoi](https://scrappa.co/docs/idealista-api/idealista_map_zoi)
- **API group:** Idealista API
- **Endpoint:** `GET https://scrappa.co/api/idealista/map/zoi`

## 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 |
| --- | --- | --- | --- |
| `country` | string | No | es, it, pt, or fr. |
| `slug` | string | Yes | Zone slug such as plaza-chamberi-madrid-madrid. |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/idealista/map/zoi?country=es&slug=plaza-chamberi-madrid-madrid"
```

## Example response

```json
{
    "success": true,
    "data": {
        "type": "MultiPolygon"
    }
}
```

## Errors

| Status | Error | Description |
| --- | --- | --- |
| 404 | Not Found | The requested listing, zone, or agency was not found. This response is not billable. |
| 422 | Validation Error | A public parameter is invalid, including rejected property types. 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)
