search_rental_properties
onthemarket.comSearches rental property listings on https://www.onthemarket.com by location with optional PCM price, bedroom, property type, keyword, and page filters. Returns property details, features, agent information, images, coordinates, and pagination metadata.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_rental_properties?
Searches rental property listings on https://www.onthemarket.com by location with optional PCM price, bedroom, property type, keyword, and page filters. Returns property details, features, agent information, images, coordinates, and pagination metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass location, min_price_pcm, max_price_pcm, min_bedrooms, max_bedrooms, property_type, keywords, page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"filters": {
"keywords": [
"<string>"
],
"location": "<string>",
"location_id": "<string>",
"max_bedrooms": 0,
"min_bedrooms": 0,
"max_price_pcm": 0,
"min_price_pcm": 0,
"property_types": [
"<string>"
],
"resolved_location": "<string>"
},
"per_page": 0,
"next_page": 0,
"properties": [
{}
],
"total_pages": 0,
"has_next_page": true,
"total_results": 0,
"returned_properties": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/9f82e105-f780-467e-b746-a306461dfebd/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "9f82e105-f780-467e-b746-a306461dfebd",
"variables": {
"location": "London",
"min_price_pcm": null,
"max_price_pcm": null,
"min_bedrooms": null,
"max_bedrooms": null,
"property_type": "",
"keywords": "",
"page": 1
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="9f82e105-f780-467e-b746-a306461dfebd") — the "search_rental_properties" function, which searches rental property listings on https://www.onthemarket.com by location with optional PCM price, bedroom, property type, keyword, and page filters. Returns property details, features, agent information, images, coordinates, and pagination metadata.. It takes location (str), min_price_pcm (int | None), max_price_pcm (int | None), min_bedrooms (int | None), max_bedrooms (int | None), property_type (str), keywords (str), page (int). Return the result as structured JSON.