# Canaldosurf — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Canaldosurf provides 2 callable API endpoints through the Parse marketplace.

**Category:** Sports | **Website:** [canaldosurf.com/](https://canaldosurf.com/) | **Docs:** [parse.bot/marketplace/9ec06aa0-1ffa-44be-92fe-8bd95a721cd4/canaldosurf-com-api](https://parse.bot/marketplace/9ec06aa0-1ffa-44be-92fe-8bd95a721cd4/canaldosurf-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-canaldosurf-com-api-9ec06aa0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_article

Get full article details including HTML and plain-text content by numeric post ID. The post_id can be obtained from search_news results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `post_id` | string | Yes | Numeric post ID from search_news results (e.g. '2079'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-canaldosurf-com-api-9ec06aa0/get_article \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"post_id":"<string>"}'
```

### search_news

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category slug to filter articles. Known slugs: surf, na-agua, terra, ar. The value is forwarded to the upstream API which validates it. |
| `page` | integer | No | Page number for pagination (1-indexed). |
| `per_page` | integer | No | Number of articles per page (1-100). |
| `query` | string | No | Free-text search query to filter articles by keyword (e.g. 'pipeline', 'WSL'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-canaldosurf-com-api-9ec06aa0/search_news \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","page":"<integer>","per_page":"<integer>","query":"<string>"}'
```
