list_dealer_car_listings
blocket.seReturns paginated car listings for a specific dealer from https://blocket.se, including every non-empty listing field such as make, model, year, mileage, fuel, price and canonical URL.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_dealer_car_listings?
Returns paginated car listings for a specific dealer from https://blocket.se, including every non-empty listing field such as make, model, year, mileage, fuel, price and canonical URL. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass dealer_id, page, page_size and get the result back without maintaining a scraper.
Response
{
"page": 0,
"sort": "<string>",
"listings": [
{}
],
"dealer_id": "<string>",
"last_page": 0,
"page_size": 0,
"dealer_name": "<string>",
"total_count": 0,
"returned_count": 0,
"is_end_of_paging": true
}Call it
curl --location 'https://us-prod.notte.cc/functions/cb615de9-0513-436c-9f25-6a2d2030a9e9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "cb615de9-0513-436c-9f25-6a2d2030a9e9",
"variables": {
"dealer_id": "5870445",
"page": 1,
"page_size": 10
}
}'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="cb615de9-0513-436c-9f25-6a2d2030a9e9") — the "list_dealer_car_listings" function, which returns paginated car listings for a specific dealer from https://blocket.se, including every non-empty listing field such as make, model, year, mileage, fuel, price and canonical URL.. It takes dealer_id (str), page (int), page_size (int). Return the result as structured JSON.