## zoopla/agents

`GET /v1/zoopla/agents`

The agent branches in an area with each one's market figures: homes available, average asking price and weeks on the market, for sale and to rent.

*Zoopla agents*

| Parameter | Required | Description |
| --- | --- | --- |
| `location` | no | A postcode, town or area name; resolved once and remembered (or pass identifier) — e.g. `Oxford` |
| `identifier` | no | An area identifier from zoopla/locations or a path from zoopla/area — e.g. `oxford` |
| `page` | no | Page number (25 a page) — e.g. `1` |
| `radius` | no | Miles around the area: 0, 0.25, 0.5, 1, 3, 5, 10, 15, 20, 30 or 40 |
| `type` | no | sales, lettings or commercial |
| `name` | no | Only agents whose name contains this |
| `sort` | no | a_z, shortest_avg_age, highest_avg_price or lowest_avg_price — e.g. `a_z` |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 2 credits at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/zoopla/agents" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "count": 0,
  "cursor": null,
  "has_more": false,
  "items": [
    {
      "about": "example",
      "address": "example",
      "featured": false,
      "for_sale": {
        "available": 0,
        "average_asking_price": 0,
        "average_weeks_on_market": 0
      },
      "id": "example",
      "logo_url": "https://example.com/example",
      "name": "example",
      "phone": "example",
      "platform": "example",
      "to_rent": {
        "available": 0,
        "average_asking_price": 0,
        "average_weeks_on_market": 0
      },
      "type": "example",
      "url": "https://example.com/example"
    }
  ],
  "location": {
    "identifier": "example",
    "name": "example"
  },
  "page": 0,
  "pages": 0,
  "total": 0
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/zoopla/agents#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/zoopla/agents.json)
