search_boat_listings
boat24.comSearches https://boat24.com boat listings by category, location, and free text. Returns zero-based paginated summary records with prices, dimensions, engine power, year, location, labels, facts, and images.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_boat_listings?
Searches https://boat24.com boat listings by category, location, and free text. Returns zero-based paginated summary records with prices, dimensions, engine power, year, location, labels, facts, and images. 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,
"query": "<string>",
"source": "<string>",
"category": "<string>",
"has_more": true,
"listings": [
{
"facts": [
{
"label": "<string>",
"value": "<string>"
}
],
"price": "<string>",
"title": "<string>",
"images": [
"<string>"
],
"labels": [
"<string>"
],
"location": "<string>",
"subtitle": "<string>",
"categories": [
"<string>"
],
"dimensions": "<string>",
"listing_id": 0,
"offer_type": "<string>",
"year_built": 0,
"image_count": 0,
"listing_url": "<string>",
"engine_power": "<string>",
"location_parts": [
"<string>"
]
}
],
"location": "<string>",
"next_page": 0,
"page_size": 0,
"total_results": 0,
"returned_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/781af004-c66b-4ee5-88f1-46e5e358bbc1/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "781af004-c66b-4ee5-88f1-46e5e358bbc1",
"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.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="781af004-c66b-4ee5-88f1-46e5e358bbc1") — the "search_boat_listings" function, which searches https://boat24.com boat listings by category, location, and free text. Returns zero-based paginated summary records with prices, dimensions, engine power, year, location, labels, facts, and images.. It takes category (str), location (str), query (str), page (int). Return the result as structured JSON.