# Ariasurf — 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.

> 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.

**Category:** Weather | **Website:** [ariasurf.com/search](https://ariasurf.com/search) | **Docs:** [parse.bot/marketplace/9e2a0db1-1f74-403c-b5c1-40ee33dcea23/ariasurf-com-api](https://parse.bot/marketplace/9e2a0db1-1f74-403c-b5c1-40ee33dcea23/ariasurf-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-ariasurf-com-api-9e2a0db1/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_post

Fetch a single blog post by its URL slug. Returns the full post including title, author, publication date, tags, full HTML content, thumbnail image, and any related posts linked within the article.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | URL slug of the post (e.g. 'how-tides-affect-surf'). Obtained from the /posts listing page URLs. |

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

### get_spot_forecast

Retrieve the current hourly surf forecast for a specific spot. Returns up to 48 hours of data including swell height/period/direction, wind speed/gusts/direction, tide height, water temperature, and wave height. Each hour includes sunrise/sunset times.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `identifier` | string | Yes | UUID of the surf spot, obtained from search_spots results. |

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

### list_posts

Fetch the blog posts listing page. Returns all published posts with title, author, publication date, thumbnail, and a short excerpt. The site serves all posts on a single page (no server-side pagination).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number. The site currently serves all posts on page 1; page > 1 returns an empty list. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ariasurf-com-api-9e2a0db1/list_posts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>"}'
```

### search_spots

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search term matched against spot names (e.g. a beach name, region, or famous break). |

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