search_watches
chrono24.co.ukSearches https://www.chrono24.co.uk for watch listings by keyword, optional GBP price range, sort order, and page. Returns up to 60 structured listings with pricing, seller location, shipping, listing and image URLs, plus pagination metadata.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_watches?
Searches https://www.chrono24.co.uk for watch listings by keyword, optional GBP price range, sort order, and page. Returns up to 60 structured listings with pricing, seller location, shipping, listing and image URLs, plus pagination metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, min_price_gbp, max_price_gbp, sort_order, page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"query": "<string>",
"watches": [
{
"title": "<string>",
"image_url": "<string>",
"price_gbp": 0,
"description": "<string>",
"listing_url": "<string>",
"seller_type": "<string>",
"availability": "<string>",
"certification": "<string>",
"listing_badge": "<string>",
"price_display": "<string>",
"shipping_info": "<string>",
"seller_country": "<string>",
"seller_location": "<string>",
"shipping_cost_gbp": 0,
"seller_country_code": "<string>"
}
],
"page_size": 0,
"sort_order": "<string>",
"total_pages": 0,
"max_price_gbp": 0,
"min_price_gbp": 0,
"total_results": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/c5656709-8841-4885-9abd-69b75d1413a0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "c5656709-8841-4885-9abd-69b75d1413a0",
"variables": {
"query": "Rolex",
"min_price_gbp": 0,
"max_price_gbp": 0,
"sort_order": "relevance",
"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="c5656709-8841-4885-9abd-69b75d1413a0") — the "search_watches" function, which searches https://www.chrono24.co.uk for watch listings by keyword, optional GBP price range, sort order, and page. Returns up to 60 structured listings with pricing, seller location, shipping, listing and image URLs, plus pagination metadata.. It takes query (str), min_price_gbp (int), max_price_gbp (int), sort_order (str), page (int). Return the result as structured JSON.