Marketplace
No threads yet
Live

list_dealers_by_keyword

blocket.se

Lists unique car dealers found in one page of dealer-only vehicle results from https://blocket.se, including each dealer org_id, name and location.

Parameters3
Runs5
Updated1d ago
Operational5 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 list_dealers_by_keyword?

Lists unique car dealers found in one page of dealer-only vehicle results from https://blocket.se, including each dealer org_id, name and location. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass keyword, page, page_size and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "dealers": [
    {
      "name": "<string>",
      "org_id": "<string>",
      "location": "<string>"
    }
  ],
  "keyword": "<string>",
  "page_size": 0,
  "listings_scanned": 0,
  "unique_dealer_count": 0,
  "dealer_only_listing_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/28d1acc5-5b19-413d-b755-cdb46bf430d4/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "28d1acc5-5b19-413d-b755-cdb46bf430d4",
    "variables": {
        "keyword": "volvo",
        "page": 1,
        "page_size": 50
    }
}'

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="28d1acc5-5b19-413d-b755-cdb46bf430d4") — the "list_dealers_by_keyword" function, which lists unique car dealers found in one page of dealer-only vehicle results from https://blocket.se, including each dealer org_id, name and location..

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