# Rightmove London Property Search

> Rightmove London Property Search is a paid API for AI agents from api.timzinin.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Scrapes and returns live London property listings from Rightmove, including price, location, rooms, images, and description

## Facts

- Endpoint: POST https://api.timzinin.com/api/rightmove-london
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rightmove-london-property-search-634f8a81
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eAlTSXlmOTyGmkFlLZdUS

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability rightmove-london-property-search-634f8a81 -d '<json body>'
```

Example prompt: Search Rightmove for 3-bedroom houses for sale in South East London and show me the latest listings with prices, locations, and photos.

## When to prefer this

Choose this endpoint when you need live London-specific property listing data from Rightmove, including coordinates, images, and full descriptions, at a low per-call cost. Prefer it over generic real estate APIs when you need Rightmove-sourced data specifically for the London market with geospatial coordinates included.

## Known failure modes

- Rightmove blocks or rate-limits the scraper, returning no results
- Invalid or unrecognised location identifier returns empty results array
- Rightmove changes its page structure, causing parsing failures
- Timeout if Rightmove is slow to respond (run_ms may spike)
- Payment not settled results in 402 error before data is returned

## How this service works

Pay-per-call data & tool APIs

## Output

A JSON array of property listings each containing latitude/longitude coordinates, Rightmove listing URL, price in GBP, number of rooms, property title, array of image URLs, area in sqm (if available), currency, location name, deal type (sale or rent), scraped timestamp, description text, posted date, property type, source portal identifier, and location identifier. Also includes metadata with run time in milliseconds and item count.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "deal_type": {
   "enum": [
    "sale",
    "rent"
   ],
   "type": "string"
  },
  "max_items": {
   "type": "integer",
   "maximum": 2000,
   "minimum": 1
  },
  "max_pages": {
   "type": "integer",
   "maximum": 50,
   "minimum": 1
  },
  "location_identifier": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "meta": {
   "run_ms": 1200,
   "settled": true,
   "item_count": 1
  },
  "results": [
   {
    "lat": 51.45647,
    "lng": 0.00221,
    "url": "https://www.rightmove.co.uk/properties/174722363#/?channel=RES_BUY",
    "found": true,
    "price": 700000,
    "rooms": 3,
    "title": "3 bedroom house for sale — Manor Lane Terrace",
    "images": [
     "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f8fc61366/174722363/f8fc61366fb5d6ae85ae17cf5cf62945_max_476x317.jpeg"
    ],
    "area_sqm": null,
    "currency": "GBP",
    "location": "Manor Lane Terrace",
    "deal_type": "sale",
    "scraped_at": "2026-07-30T08:12:00.000Z",
    "description": "An attractive three bedroomed, end-of-terrace house, built post-war in the style of the Edwardian terrace it adjoins. Manor Lane Terrace is a quiet residential road...",
    "posted_date": "2026-04-21T11:50:10Z",
    "property_type": "House",
    "source_portal": "rightmove-london",
    "location_identifier": "REGION^87490"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/rightmove-london-property-search-634f8a81/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.timzinin.com](https://www.zero.xyz/host/api.timzinin.com/llms.txt)
