## zoopla/agent

`GET /v1/zoopla/agent`

One agent branch's page: address, telephone, website and social links, memberships, description, photos and position.

*Zoopla agent*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | yes | The branch id from zoopla/agents (or pass url, the branch's page) — e.g. `55447` |
| `url` | no | The branch's page URL instead of an id |
| `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/agent?id=55447" \
  -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
{
  "_warnings": [],
  "about": "example",
  "address": "example",
  "commercial": {},
  "for_sale": {
    "available": 0,
    "average_asking_price": 0,
    "average_weeks_on_market": 0
  },
  "id": "example",
  "images": [],
  "latitude": 0,
  "logo_url": "https://example.com/example",
  "longitude": 0,
  "memberships": [
    {
      "name": "example",
      "url": "https://example.com/example"
    }
  ],
  "name": "example",
  "outcode": "example",
  "phone": "example",
  "platform": "example",
  "postcode": "example",
  "social": {
    "facebook": "example"
  },
  "staff": [],
  "to_rent": {
    "available": 0,
    "average_asking_price": 0,
    "average_weeks_on_market": 0
  },
  "type": "example",
  "url": "https://example.com/example"
}
```

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