Discover/Ariasurf API
live

Ariasurf APIariasurf.com

Search thousands of surf spots worldwide and retrieve 48-hour hourly forecasts with swell, wind, tide, and water temperature data via the Ariasurf API.

This API takes change requests — .
Endpoint health
verified 8h ago
get_post
list_posts
get_spot_forecast
search_spots
4/4 passing latest checkself-healing
Endpoints
4
Updated
8h ago

What is the Ariasurf API?

The Ariasurf API covers 4 endpoints that expose surf spot search and detailed hourly surf forecasts for locations worldwide. The get_spot_forecast endpoint returns up to 48 hours of per-hour data including swell wave height, period, and direction, wind speed and gusts, tide height, and water temperature — all keyed to a spot UUID retrieved from search_spots. A blog content layer is also available via list_posts and get_post.

This call costs1 credit / call— charged only on success
Try it
Search term matched against spot names (e.g. a beach name, region, or famous break).
api.parse.bot/scraper/06f2b051-ae63-4d35-b233-125f43f29e49/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/06f2b051-ae63-4d35-b233-125f43f29e49/search_spots?query=Bali' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace ariasurf-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Aria Surf SDK — bounded, re-runnable; every call capped."""
from parse_apis.Aria_Surf_API import AriaSurf, SpotNotFound

client = AriaSurf()

# List blog posts from the listing page
for post_summary in client.post_summaries.list(limit=3):
    print(post_summary.title, post_summary.published_date, post_summary.excerpt[:60])

# Drill-down: get full details of the first post
summary = client.post_summaries.list(limit=1).first()
if summary:
    full_post = summary.details()
    print(full_post.title, full_post.author, full_post.tags)
    for related in full_post.related_posts[:2]:
        print(related.title, related.url)

# Search for surf spots
for spot in client.spots.search(query="Bali", limit=3):
    print(spot.name, spot.country, spot.latitude, spot.longitude)

# Get a forecast for the first spot found
spot = client.spots.search(query="Pipeline", limit=1).first()
if spot:
    try:
        forecast = spot.forecast()
        print(forecast.name, forecast.address.country)
        for hour in forecast.forecast_hours[:3]:
            print(hour.time, hour.swell_wave_height, hour.wind_speed)
    except SpotNotFound as e:
        print("spot gone:", e.identifier)

print("exercised: post_summaries.list, PostSummary.details, spots.search, spot.forecast")
All endpoints · 4 totalmissing one? ·

Full-text search over surf spots by name. Returns matching spots with location, surface type, and address metadata. Results are auto-iterated as a single page.

Input
ParamTypeDescription
queryrequiredstringSearch term matched against spot names (e.g. a beach name, region, or famous break).
Response
{
  "type": "object",
  "fields": {
    "spots": "array of surf spot objects with identifier, name, coordinates, surface, address",
    "total": "integer count of matching spots"
  },
  "sample": {
    "spots": [
      {
        "name": "Balian",
        "town": null,
        "state": "Bali",
        "country": "Indonesia",
        "surface": "sand",
        "latitude": -8.5026987,
        "longitude": 114.9643489,
        "identifier": "bbe3a28a-44a7-4cac-9e20-5292f6bb34a3",
        "description": null,
        "country_code": "id",
        "orientation_degrees": 208,
        "coast_distance_meters": 19
      }
    ],
    "total": 9
  }
}

About the Ariasurf API

Spot Search and Forecast

Use search_spots with a query string — a beach name, region, or well-known break — to get back an array of matching surf spot objects. Each result includes a UUID identifier, display name, decimal coordinates, surface type, and structured address metadata. Pass that identifier to get_spot_forecast to pull the full forecast.

Hourly Forecast Data

get_spot_forecast returns a forecast_hours array covering up to 48 consecutive hours. Each entry carries swellWaveHeight, swellWavePeriod, and swellWaveDirection alongside windSpeed, windGusts, and windDirect. Tide height, water temperature, and wave height are also present per hour, and each record includes sunrise and sunset timestamps for that location. The response also echoes the spot's name, address (locality, country, postal code), latitude, and longitude.

Blog Content Endpoints

list_posts returns all published Ariasurf blog posts in a single page — each summary includes slug, title, author, published_date, thumbnail_url, tags, and a short excerpt. The site serves all posts on page 1; requesting page values above 1 returns an empty list. get_post accepts a slug and returns the full article body as HTML (full_content), canonical url, tags, author, thumbnail_url, published_date, and a related_posts array with slugs, titles, and URLs of linked articles.

Reliability & maintenanceVerified

The Ariasurf API is a managed, monitored endpoint for ariasurf.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when ariasurf.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official ariasurf.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
8h ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a surf session planner that shows 48-hour swell and wind forecasts for a searched beach.
  • Display tide height and water temperature trends alongside wave height for dive and surf trip planning.
  • Create a spot-comparison tool that queries multiple surf breaks by name and overlays their hourly forecasts.
  • Send daily wind and swell alerts to users who have saved specific spot UUIDs.
  • Power a surf travel app that resolves a region name to matching spots and surfaces their coordinates on a map.
  • Aggregate Ariasurf blog posts into a content feed filtered by topic tag.
  • Archive surf forecasting articles by fetching full HTML content and related post links from get_post.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Ariasurf have an official developer API?+
Ariasurf does not publish an official public developer API or API documentation as of now.
What does get_spot_forecast return beyond wave height?+
get_spot_forecast returns a full forecast_hours array where each hour includes swellWaveHeight, swellWavePeriod, swellWaveDirection, windSpeed, windGusts, windDirect, tide height, water temperature, wave height, and sunrise/sunset times for the spot's location. The spot's name, coordinates, and structured address are also included at the top level of the response.
Does the API cover historical forecast data or only the next 48 hours?+
The API currently returns the active forecast window of up to 48 hours from the present. Historical forecast archives are not exposed. You can fork this API on Parse and revise it to add an endpoint targeting historical data if the source makes that available.
Can I retrieve a list of all surf spots without searching by name?+
search_spots requires a query string and returns matches against that term — there is no browse-all or category-filter mode currently. You can fork this API on Parse and revise it to add a listing or browse endpoint if that surface exists on the source site.
How does pagination work for list_posts?+
Ariasurf serves all published blog posts on a single page. The list_posts endpoint accepts an optional page integer, but only page=1 returns data; any higher value returns an empty list and a total of zero.
Page content last updated . Spec covers 4 endpoints from ariasurf.com.
Related APIs in WeatherSee all →
magicseaweed.com API
Search for surf spots worldwide and get detailed forecasts including wave height, wind conditions, tide times, and weather data to plan your next session. Discover popular breaks and access real-time conditions for any location to catch the best waves.
surfline.com API
Check real-time surf conditions, forecasts for waves and wind, tide predictions, and live camera feeds from thousands of surf spots around the world. Browse spots by geographic region and access detailed weather data to plan your perfect surfing session.
weatherspark.com API
Get historical weather data, current METAR reports, and monthly climate summaries for any location by searching WeatherSpark's comprehensive weather database. Access detailed weather insights including temperature trends, precipitation patterns, and atmospheric conditions to power weather-dependent applications and analysis.
weatherunderground.com API
Get real-time weather data and 10-day forecasts for any location, with access to current conditions like temperature, humidity, and wind speed. Search for locations and receive detailed weather narratives to plan your day or week ahead.
weatherforecast.com API
Get detailed 12-day weather forecasts for any location worldwide, with temperature, wind, rain, humidity, and UV index data updated three times daily. Search locations and retrieve comprehensive weather information suitable for travel planning, research, and general forecasting needs.
metoffice.gov.uk API
Access detailed UK weather forecasts, real-time lightning tracking, and weather warnings from the Met Office. Search locations to retrieve hourly, daily, regional, and long-range predictions, and monitor storm activity with spot forecasts across any geographic area.
wunderground.com API
Access real-time weather conditions, multi-day forecasts, and detailed historical weather data from thousands of personal and airport weather stations worldwide. Search and retrieve current observations, hourly history, and monthly records to power your weather applications and analysis.
zoom.earth API
Search Zoom Earth for places and get live environmental data including weather forecasts by coordinates, satellite imagery timestamps, active tropical storm tracks, active fires, and current platform status.