Marketplace
No threads yet
Live

search_cars

blocket.se

Searches Blocket Mobility cars on https://blocket.se and returns paginated car listing summaries in the selected order. Results include every non-empty car field exposed by Blocket, including make, model, year, mileage, fuel, price, location, and images.

Parameters4
Runs10
Updated10d ago
Operational10 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is search_cars?

Searches Blocket Mobility cars on https://blocket.se and returns paginated car listing summaries in the selected order. Results include every non-empty car field exposed by Blocket, including make, model, year, mileage, fuel, price, location, and images. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page, sort, page_size and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "sort": "<string>",
  "query": "<string>",
  "listings": [
    {}
  ],
  "last_page": 0,
  "page_size": 0,
  "total_count": 0,
  "returned_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/40dd84c4-0d09-49d4-a3a9-5b3d5a512b5f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "40dd84c4-0d09-49d4-a3a9-5b3d5a512b5f",
    "variables": {
        "query": "volvo",
        "page": 1,
        "sort": "RELEVANCE",
        "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.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="40dd84c4-0d09-49d4-a3a9-5b3d5a512b5f") — the "search_cars" function, which searches Blocket Mobility cars on https://blocket.se and returns paginated car listing summaries in the selected order. Results include every non-empty car field exposed by Blocket, including make, model, year, mileage, fuel, price, location, and images..

It takes query (str), page (int), sort (str), page_size (int). Return the result as structured JSON.