search_surf_spots
ariasurf.comSearches https://ariasurf.com for surf spots by name and returns all matching spot records with coordinates, surface information, source tags, and address metadata in one auto-iterated result page.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_surf_spots?
Searches https://ariasurf.com for surf spots by name and returns all matching spot records with coordinates, surface information, source tags, and address metadata in one auto-iterated result page. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query and get the result back without maintaining a scraper.
Response
{
"count": 0,
"query": "<string>",
"spots": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/d23d4b4f-8b04-4b4e-944b-d578a18762b9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d23d4b4f-8b04-4b4e-944b-d578a18762b9",
"variables": {
"query": "Jeffreys Bay"
}
}'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="d23d4b4f-8b04-4b4e-944b-d578a18762b9") — the "search_surf_spots" function, which searches https://ariasurf.com for surf spots by name and returns all matching spot records with coordinates, surface information, source tags, and address metadata in one auto-iterated result page.. It takes query (str). Return the result as structured JSON.