Live
get_hourly_forecast
ariasurf.comReturns up to 48 current hourly surf forecast records for one spot from https://ariasurf.com, including swell, wind, tide, water, waves, sun times, and weather.
Parameters3
Runs8
Updated3d ago
Operational8 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_hourly_forecast?
Returns up to 48 current hourly surf forecast records for one spot from https://ariasurf.com, including swell, wind, tide, water, waves, sun times, and weather. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass spot_id, hours, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"spot": {
"name": "<string>",
"latitude": 0,
"longitude": 0,
"identifier": "<string>",
"properties": {},
"creation_date": "<string>"
},
"count": 0,
"hours": [
{
"time": "<string>",
"sunset": "<string>",
"sunrise": "<string>",
"swell_energy": 0,
"tide_height_m": 0,
"wave_height_m": 0,
"swell_height_m": 0,
"swell_period_s": 0,
"wind_gusts_kmh": 0,
"wind_speed_kmh": 0,
"water_temperature_c": 0,
"wind_direction_degrees": 0,
"additional_measurements": {},
"swell_direction_degrees": 0
}
],
"timezone": "<string>",
"available_hours": 0,
"source_start_time": "<string>",
"current_start_time": "<string>",
"forecast_point_latitude": 0,
"forecast_point_longitude": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/64f2c21e-2131-42f8-8ff2-c192c7bad8dd/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "64f2c21e-2131-42f8-8ff2-c192c7bad8dd",
"variables": {
"spot_id": "b928c36a-4ee7-49ea-b493-e642a828ac2f",
"hours": 48,
"timeout_seconds": 30
}
}'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="64f2c21e-2131-42f8-8ff2-c192c7bad8dd") — the "get_hourly_forecast" function, which returns up to 48 current hourly surf forecast records for one spot from https://ariasurf.com, including swell, wind, tide, water, waves, sun times, and weather.. It takes spot_id (str), hours (int), timeout_seconds (int). Return the result as structured JSON.