# Idealista Agency

Anonymous agency profile. Agency stock is search with microsite_short_name.

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

## 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. |
| `microsite_short_name` | string | Yes | Agency short name, for example clikalia. |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/idealista/agency?country=es&microsite_short_name=clikalia"
```

## Example response

```json
{
    "success": true,
    "data": {
        "commercialName": "Clikalia Espa\u00f1a",
        "total": 576
    }
}
```

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