## rightmove/sold-property

`GET /v1/rightmove/sold-property`

One sold property's history: every Land Registry sale with the change between them, the data's dates, and the listing the portal keeps beside it with its photos and floorplans.

*Rightmove sold property*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | yes | The sold property's id from a rightmove/sold-prices row (or pass url, its page) — e.g. `c152e439-e184-4300-8e6d-c4736523f835` |
| `url` | no | The sold property'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/rightmove/sold-property?id=c152e439-e184-4300-8e6d-c4736523f835" \
  -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": [],
  "address": "example",
  "bathrooms": 0,
  "bedrooms": 0,
  "data_as_of": {
    "earliest_transaction": "example",
    "loaded": "example",
    "most_recent_transaction": "example"
  },
  "latitude": 0,
  "listing": {
    "floorplans": [
      {
        "caption": "example",
        "url": "https://example.com/example"
      }
    ],
    "id": "example",
    "images": [
      {
        "url": "https://example.com/example"
      }
    ],
    "last_listed": "example",
    "street_view_url": "https://example.com/example",
    "url": "https://example.com/example"
  },
  "longitude": 0,
  "map_url": "https://example.com/example",
  "platform": "example",
  "property_type": "example",
  "source": "example",
  "transactions": [
    {
      "change": 0,
      "change_label": "example",
      "date": "2026-09-01T12:00:00Z",
      "date_label": "2026-09-01T12:00:00Z",
      "price": 0,
      "price_label": "example",
      "tenure": "example"
    }
  ],
  "type": "example",
  "url": "https://example.com/example"
}
```

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