## rightmove/sold-prices

`GET /v1/rightmove/sold-prices`

Land Registry sales in an area as the portal indexes them: address, type, bedrooms, every recorded sale with its date, price and tenure, and the last sale first.

*Rightmove sold prices*

| Parameter | Required | Description |
| --- | --- | --- |
| `location` | no | A postcode, town or area name; resolved once and remembered (or pass identifier and type) — e.g. `Beeston, Nottingham` |
| `identifier` | no | An area identifier from rightmove/sold-locations — e.g. `87490` |
| `type` | no | The identifier's type from rightmove/sold-locations — e.g. `REGION` |
| `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 |
| `property_type` | no | detached, semi_detached, terraced or flat |
| `sort` | no | last_sold, lowest_price, highest_price or address — e.g. `last_sold` |
| `years` | no | Only sales in the last 1, 2, 3, 5, 10, 15, 20 or 30 years |
| `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/sold-prices" \
  -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": [
    {
      "address": "example",
      "bathrooms": 0,
      "bedrooms": 0,
      "id": "example",
      "image_url": "https://example.com/example",
      "last_sold": {
        "date": "2026-09-01T12:00:00Z",
        "price": 0,
        "tenure": "example"
      },
      "latitude": 0,
      "longitude": 0,
      "map_url": "https://example.com/example",
      "platform": "example",
      "property_type": "example",
      "transactions": [
        {}
      ],
      "type": "example",
      "url": "https://example.com/example"
    }
  ],
  "location": {
    "identifier": "example",
    "type": "example"
  },
  "page": 0,
  "per_page": 0,
  "total": 0
}
```

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