search_used_cars
cars24.comSearches used-car listings on https://cars24.com with city, vehicle, fuel, transmission, year, price, ordering, and cursor pagination filters. Returns complete listing details and the next search_after cursor.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_used_cars?
Searches used-car listings on https://cars24.com with city, vehicle, fuel, transmission, year, price, ordering, and cursor pagination filters. Returns complete listing details and the next search_after cursor. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass city_id, city_slug, brand, model, fuel_type, transmission, min_year, max_year, min_price, max_price, order, page_size, search_after and get the result back without maintaining a scraper.
Response
{
"order": "<string>",
"city_id": "<string>",
"listings": [
{}
],
"returned": 0,
"city_slug": "<string>",
"total_elements": 0,
"applied_filters": [
"<string>"
],
"next_search_after": [
"<string>"
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/32a66f77-6417-4989-9330-a81f2a2237a9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "32a66f77-6417-4989-9330-a81f2a2237a9",
"variables": {
"city_id": "",
"city_slug": "",
"brand": "",
"model": "",
"fuel_type": "",
"transmission": "",
"min_year": 0,
"max_year": 0,
"min_price": 0,
"max_price": 0,
"order": "best_match",
"page_size": 20,
"search_after": ""
}
}'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="32a66f77-6417-4989-9330-a81f2a2237a9") — the "search_used_cars" function, which searches used-car listings on https://cars24.com with city, vehicle, fuel, transmission, year, price, ordering, and cursor pagination filters. Returns complete listing details and the next search_after cursor.. It takes city_id (str), city_slug (str), brand (str), model (str), fuel_type (str), transmission (str), min_year (int), max_year (int), min_price (int), max_price (int), order (str), page_size (int), search_after (str). Return the result as structured JSON.