Discover/Canal do Surf API
live

Canal do Surf APIcanaldosurf.com

Access surf news articles from canaldosurf.com. Search by keyword or category, paginate results, and fetch full article content by post ID.

This API takes change requests — .
Endpoint health
verified 2h ago
search_news
get_article
2/2 passing latest checkself-healing
Endpoints
2
Updated
2h ago

What is the Canal do Surf API?

The Canal do Surf API exposes 2 endpoints for retrieving surf news articles from canaldosurf.com, a Brazilian publication covering WSL competitions, Brazilian surfers, and surf culture. The search_news endpoint returns paginated article summaries with titles, excerpts, dates, slugs, and category IDs, while get_article delivers full article content — including HTML and plain text — for any numeric post ID.

This call costs1 credit / call— charged only on success
Try it
Page number for pagination (1-indexed).
Free-text search query to filter articles by keyword (e.g. 'pipeline', 'WSL').
Category slug to filter articles. Known slugs: surf, na-agua, terra, ar. The value is forwarded to the upstream API which validates it.
Number of articles per page (1-100).
api.parse.bot/scraper/36c2095b-dfcc-441c-ba14-7511e39d2a4c/<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/36c2095b-dfcc-441c-ba14-7511e39d2a4c/search_news?category=surf&per_page=5&page=1&query=surf' \
  -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 canaldosurf-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: Canal do Surf news SDK — bounded, re-runnable."""
from parse_apis.canaldosurf_com_api import CanalDoSurf, Category, ArticleNotFound

client = CanalDoSurf()

# Search surf news articles filtered by category, capped at 5 total items.
for article_summary in client.article_summaries.search(category=Category.SURF, limit=5):
    print(article_summary.title, article_summary.date)

# Drill down: take the first result and fetch full article details.
summary = client.article_summaries.search(query="WSL", limit=1).first()
if summary is not None:
    article = summary.details()
    print(article.title)
    print(article.content_text[:200])
    print("tags:", article.tags)

# Point lookup by a known post ID.
try:
    detail = client.articles.get(post_id="2079")
    print(detail.title, detail.modified)
except ArticleNotFound:
    print("Article not found")

print("exercised: article_summaries.search / details / articles.get")
All endpoints · 2 totalmissing one? ·

Search or list surf news articles with optional text query, category filter, and pagination. Returns articles sorted by date descending. Pagination is controlled by page and per_page; the response includes total article count and total pages.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-indexed).
querystringFree-text search query to filter articles by keyword (e.g. 'pipeline', 'WSL').
categorystringCategory slug to filter articles. Known slugs: surf, na-agua, terra, ar. The value is forwarded to the upstream API which validates it.
per_pageintegerNumber of articles per page (1-100).
Response
{
  "type": "object",
  "fields": {
    "page": "current page number",
    "total": "total number of matching articles",
    "articles": "array of article summary objects with id, title, slug, date, link, excerpt, categories, featured_media, author",
    "per_page": "articles per page",
    "total_pages": "total number of pages available"
  },
  "sample": {
    "data": {
      "page": 1,
      "total": 10,
      "articles": [
        {
          "id": 2079,
          "date": "2026-05-12T09:26:26",
          "link": "https://canaldosurf.com/o-10-perfeito-que-assustou-a-wsl-em-casablanca-%f0%9f%8c%8a/",
          "slug": "o-10-perfeito-que-assustou-a-wsl-em-casablanca-%f0%9f%8c%8a",
          "title": "O 10 PERFEITO que assustou a WSL em Casablanca 🌊",
          "author": 1,
          "excerpt": "O 10 PERFEITO que assustou a WSL em Casablanca...",
          "categories": [
            144
          ],
          "featured_media": 2080
        }
      ],
      "per_page": 2,
      "total_pages": 5
    },
    "status": "success"
  }
}

About the Canal do Surf API

What the API Covers

Canal do Surf is a Brazilian surf news site focused on WSL tour coverage, profiles of Brazilian athletes, competition results, and surf culture. The API surfaces its article catalog through two endpoints. Responses include structured metadata such as title, slug, date, link, excerpt, categories, featured_media, and author for every article returned by search_news.

Searching and Filtering Articles

The search_news endpoint accepts an optional query string for free-text keyword search (for example, 'pipeline' or 'WSL') and an optional category slug to narrow results. Known category slugs are surf, na-agua, terra, and ar. Pagination is controlled by the page (1-indexed) and per_page (1–100) parameters. The response includes total, total_pages, and the current page alongside the articles array, making it straightforward to walk through large result sets.

Fetching Full Article Content

The get_article endpoint accepts a numeric post_id — obtained from search_news results — and returns the complete article record. Fields include title, excerpt, date, modified, link, slug, author, categories, and tags as arrays of numeric IDs. Both HTML and plain-text representations of the article body are returned, giving consumers flexibility in how they process the content.

Data Shape Notes

Author and category fields are returned as numeric IDs rather than display names in both endpoints. Tags in get_article are also numeric IDs. There is no endpoint that resolves these IDs to human-readable labels within the current API surface.

Reliability & maintenanceVerified

The Canal do Surf API is a managed, monitored endpoint for canaldosurf.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when canaldosurf.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 canaldosurf.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
2h ago
Latest check
2/2 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
  • Monitor WSL competition coverage by querying search_news with the query 'WSL' and tracking new articles by date.
  • Build a Portuguese-language surf news feed filtered to the na-agua category using the category parameter.
  • Aggregate article metadata (title, excerpt, date, link) for a surf content digest or newsletter.
  • Retrieve full article HTML via get_article for downstream NLP tasks such as entity extraction or sentiment analysis on surf news.
  • Track publication frequency for specific Brazilian surfers by searching their names and counting results over time.
  • Populate a surf media archive by paginating all articles with per_page=100 and storing structured metadata.
  • Cross-reference Canal do Surf article dates with WSL event calendars to correlate competition outcomes with coverage volume.
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 canaldosurf.com have an official developer API?+
No. canaldosurf.com does not publish a public developer API or documented data access program.
What does search_news return and how do I filter by topic?+
It returns an array of article summary objects, each with fields including id, title, slug, date, link, excerpt, categories, featured_media, and author. You can filter by passing a query string (e.g. 'gabriel medina') or a category slug (surf, na-agua, terra, ar). Both filters are optional and can be combined. Results are sorted by date descending.
Are author names and category names returned directly?+
No. Both endpoints return author as a single numeric ID and categories as an array of numeric IDs. The current API does not include an endpoint to resolve those IDs to display names. You can fork the API on Parse and revise it to add a lookup or enrichment endpoint for author and category metadata.
Does the API cover surf forecasts, contest scores, or video content?+
Not currently. The API covers news article text and metadata only — no surf forecast data, live contest scores, or video catalog entries are exposed. You can fork the API on Parse and revise it to add endpoints targeting those content types if they appear on the site.
How fresh is the article data?+
Articles include both a date (original publication) and a modified field (last update), both in ISO format. The API does not provide a real-time event stream; freshness depends on when you poll search_news. For near-real-time monitoring, you would need to poll periodically and compare date or modified values against your last-fetched timestamp.
Page content last updated . Spec covers 2 endpoints from canaldosurf.com.
Related APIs in SportsSee all →
ariasurf.com API
Plan your next surf session by searching thousands of worldwide surf spots and accessing detailed hourly forecasts with swell conditions, wind patterns, tidal information, and water temperature data. Get real-time predictions to catch the perfect waves whenever and wherever you want to surf.
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.
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.
hsprepsports.com API
Access high school sports news, rankings, recruiting updates, and player spotlights from HS PrepSports by searching articles, browsing collections, or reading individual pieces. Stay informed on the latest high school athletic developments with curated content all in one place.
nrk.no API
Access the latest news from Norway's leading broadcaster NRK.no, including front-page stories, category-specific articles, regional news, and breaking news updates through a unified search and browsing interface. Stay informed with full article content, RSS feeds, and real-time news ticker notifications across all major topics.
reuters.com API
Access data from reuters.com.
tv2.no API
Access the latest news, sports updates, and TV schedules from tv2.no, including live match information, articles by category, and video content. Browse frontpage articles, track live sports matches with detailed stats, check the TV guide, and follow topic-specific news feeds all in one place.
vg.no API
Access VG.no's latest news, articles, sports scores, and TV guides through a single interface where you can browse the front page, search articles by topic, view category-specific content, and find related stories. Get real-time sports scores and television schedules alongside comprehensive news coverage from Norway's leading news outlet.