Marketplace
No threads yet
Live

search_listings

boat24.com

Searches https://boat24.com for boat listings with optional category, location, and free-text filters. Returns zero-based paginated results with 24 listing summaries per page and continuation metadata for automatic page iteration.

Parameters4
Runs8
Updated10d ago
Operational8 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_listings?

Searches https://boat24.com for boat listings with optional category, location, and free-text filters. Returns zero-based paginated results with 24 listing summaries per page and continuation metadata for automatic page iteration. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category, location, query, page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "source": "<string>",
  "results": [
    {}
  ],
  "per_page": 0,
  "next_page": 0,
  "total_pages": 0,
  "has_next_page": true,
  "total_results": 0,
  "applied_filters": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/d8678afa-cfa6-4db7-8cc3-bd05a57d113d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "d8678afa-cfa6-4db7-8cc3-bd05a57d113d",
    "variables": {
        "category": "",
        "location": "",
        "query": "",
        "page": 0
    }
}'

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="d8678afa-cfa6-4db7-8cc3-bd05a57d113d") — the "search_listings" function, which searches https://boat24.com for boat listings with optional category, location, and free-text filters. Returns zero-based paginated results with 24 listing summaries per page and continuation metadata for automatic page iteration..

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