## rightmove/property

`GET /v1/rightmove/property`

One listing's page: title, address, price and qualifier, tenure and charges, council tax, description and key features, the utilities and risks the agent declared, nearest stations, photos, floorplans, EPC, brochures and the agent branch.

*Rightmove property*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | yes | The listing number (or pass url, the listing's page) — e.g. `90874980` |
| `url` | no | The listing'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:** 3 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/rightmove/property?id=90874980" \
  -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": [],
  "added_on": "example",
  "address": "example",
  "agent": {
    "address": "example",
    "branch": "example",
    "developer": false,
    "display_name": "example",
    "id": "example",
    "logo_url": "https://example.com/example",
    "name": "example",
    "phone": "example"
  },
  "available": false,
  "bathrooms": 0,
  "bedrooms": 0,
  "brochures": [
    {
      "caption": "example",
      "url": "https://example.com/example"
    }
  ],
  "channel": "example",
  "council_tax": "example",
  "description": "example",
  "epcs": [
    {
      "caption": "example",
      "url": "https://example.com/example"
    }
  ],
  "features": {
    "accessibility": "example",
    "broadband": "example",
    "electricity": "example",
    "garden": "example",
    "heating": "example",
    "parking": "example",
    "sewerage": "example",
    "water": "example"
  },
  "floorplans": [
    {
      "caption": "example",
      "thumbnail_url": "https://example.com/example",
      "url": "https://example.com/example"
    }
  ],
  "ground_rent": "example",
  "id": "example",
  "key_features": [],
  "latitude": 0,
  "lease_length": "example",
  "listing_update": "2026-09-01T12:00:00Z",
  "longitude": 0,
  "map_url": "https://example.com/example",
  "market_info_url": "https://example.com/example",
  "obligations": {
    "listed": "example",
    "privateAccess": "example",
    "publicAccess": "example",
    "restrictions": "example"
  },
  "photos": [
    {
      "caption": "example",
      "thumbnail_url": "https://example.com/example",
      "url": "https://example.com/example"
    }
  ],
  "pin": "example",
  "platform": "example",
  "postcode": "example",
  "price": 0,
  "price_label": "example",
  "property_category": "example",
  "property_type": "example",
  "risks": {
    "floodDefences": "example",
    "floodHistory": "example",
    "floodRisk": "example"
  },
  "school_checker_url": "https://example.com/example",
  "service_charge": "example",
  "size": "example",
  "size_secondary": "example",
  "sold_prices_url": "https://example.com/example",
  "stamp_duty": {
    "country": "example",
    "price": 0
  },
  "stations": [
    {
      "distance_miles": 0,
      "name": "example",
      "type": "example"
    }
  ],
  "street_view_url": "https://example.com/example",
  "tags": [],
  "tenure": "example",
  "title": "example",
  "transaction": "example",
  "type": "example",
  "url": "https://example.com/example",
  "virtual_tours": []
}
```

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