Marketplace
No threads yet
Live

get_dealer_contact_details

blocket.se

Returns full Blocket car dealer contact, address, opening-hour, image and geo-coordinate data by dealer_id from https://blocket.se.

Parameters1
Runs5
Updated1d ago
Degraded5 runs · 80% 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 get_dealer_contact_details?

Returns full Blocket car dealer contact, address, opening-hour, image and geo-coordinate data by dealer_id from https://blocket.se. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass dealer_id and get the result back without maintaining a scraper.

Response

{
  "url": "<string>",
  "name": "<string>",
  "email": "<string>",
  "phone": "<string>",
  "images": [
    "<string>"
  ],
  "address": {
    "country": "<string>",
    "locality": "<string>",
    "postal_code": "<string>",
    "schema_type": "<string>",
    "street_address": "<string>"
  },
  "dealer_id": "<string>",
  "schema_id": "<string>",
  "schema_type": "<string>",
  "opening_hours": [
    {
      "opens": "<string>",
      "closes": "<string>",
      "day_of_week": "<string>",
      "schema_type": "<string>"
    }
  ],
  "schema_context": "<string>",
  "geo_coordinates": {
    "accuracy": 0,
    "latitude": 0,
    "longitude": 0
  }
}

Call it

curl --location 'https://us-prod.notte.cc/functions/3a53dc4f-ecae-4d56-b78a-e3ccd2fd7f6c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "3a53dc4f-ecae-4d56-b78a-e3ccd2fd7f6c",
    "variables": {
        "dealer_id": "5870445"
    }
}'

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="3a53dc4f-ecae-4d56-b78a-e3ccd2fd7f6c") — the "get_dealer_contact_details" function, which returns full Blocket car dealer contact, address, opening-hour, image and geo-coordinate data by dealer_id from https://blocket.se..

It takes dealer_id (str). Return the result as structured JSON.