Marketplace
No threads yet
Live

search_torget

blocket.se

Searches Blocket Torget on https://blocket.se and returns paginated second-hand listing summaries in the selected order. Results include every non-empty listing field exposed by Blocket, including price, location, images, and the total match count.

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_torget?

Searches Blocket Torget on https://blocket.se and returns paginated second-hand listing summaries in the selected order. Results include every non-empty listing field exposed by Blocket, including price, location, images, and the total match count. 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/35ae5c26-94bc-4dbc-abf7-16c4a58bdabf/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "35ae5c26-94bc-4dbc-abf7-16c4a58bdabf",
    "variables": {
        "query": "soffa",
        "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="35ae5c26-94bc-4dbc-abf7-16c4a58bdabf") — the "search_torget" function, which searches Blocket Torget on https://blocket.se and returns paginated second-hand listing summaries in the selected order. Results include every non-empty listing field exposed by Blocket, including price, location, images, and the total match count..

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