get_boat_listing_details
boat24.comRetrieves a complete boat listing by numeric ID from https://boat24.com. Returns pricing, specifications, description, equipment, images, seller details, location, and listing metadata.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_boat_listing_details?
Retrieves a complete boat listing by numeric ID from https://boat24.com. Returns pricing, specifications, description, equipment, images, seller details, location, and listing metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass listing_id and get the result back without maintaining a scraper.
Response
{
"price": "<string>",
"title": "<string>",
"engine": "<string>",
"images": [
"<string>"
],
"seller": {
"name": "<string>",
"phone": "<string>",
"badges": [
"<string>"
],
"address": "<string>",
"country": "<string>",
"verified": true,
"profile_url": "<string>",
"seller_type": "<string>",
"more_listings_count": 0
},
"source": "<string>",
"currency": "<string>",
"location": "<string>",
"material": "<string>",
"subtitle": "<string>",
"brand_url": "<string>",
"equipment": [
"<string>"
],
"fuel_type": "<string>",
"brand_name": "<string>",
"categories": [
"<string>"
],
"listing_id": 0,
"media_urls": [
"<string>"
],
"price_type": "<string>",
"date_posted": "<string>",
"description": "<string>",
"listing_url": "<string>",
"availability": "<string>",
"listing_info": [
{
"label": "<string>",
"value": "<string>"
}
],
"price_amount": 0,
"item_condition": "<string>",
"location_parts": [
"<string>"
],
"specifications": [
{
"label": "<string>",
"value": "<string>"
}
],
"favorites_count": 0,
"production_date": "<string>",
"views_last_7_days": 0,
"description_language": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/2b28fa08-8a98-469a-bef7-d8c5edc4abfa/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "2b28fa08-8a98-469a-bef7-d8c5edc4abfa",
"variables": {
"listing_id": 727730
}
}'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="2b28fa08-8a98-469a-bef7-d8c5edc4abfa") — the "get_boat_listing_details" function, which retrieves a complete boat listing by numeric ID from https://boat24.com. Returns pricing, specifications, description, equipment, images, seller details, location, and listing metadata.. It takes listing_id (int). Return the result as structured JSON.