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

> Search and explore outdoor climbing areas, routes, and photos with access to detailed route information and geographic hierarchy. Build climbing apps, trip planners, or guides by pulling real-time climbing data organized by location and route details.

**Category:** Sports | **Website:** [thecrag.com/](https://thecrag.com/) | **Docs:** [parse.bot/marketplace/f067a02f-efff-458a-ba88-791e5f96122f/thecrag-com-api](https://parse.bot/marketplace/f067a02f-efff-458a-ba88-791e5f96122f/thecrag-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-thecrag-com-api-f067a02f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_area_details

Get detailed information about a climbing area including location coordinates, sub-areas, summary description, breadcrumbs, and route/photo counts. The node_id field can be used with get_area_hierarchy to explore sub-areas programmatically.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full URL of the area page on thecrag.com (e.g. 'https://www.thecrag.com/en/climbing/australia/blue-mountains') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-thecrag-com-api-f067a02f/get_area_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### get_area_hierarchy

Traverse the geographic hierarchy of climbing areas starting from a node ID. Returns the immediate children of the specified node. Use node_id from get_area_details to drill down into sub-areas. Omitting node_id returns children of the world root node (continents/regions).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `node_id` | string | No | Node ID to start from. Use node_id from get_area_details to explore sub-areas. Omitting returns children of the world root node. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-thecrag-com-api-f067a02f/get_area_hierarchy \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"node_id":"<string>"}'
```

### get_area_photos

List photos associated with a climbing area with pagination. Returns photo detail URLs, thumbnail image URLs, full-size image URLs, and captions extracted from the area's photos page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `url` | string | Yes | Full URL of the area page on thecrag.com (e.g. 'https://www.thecrag.com/en/climbing/australia/blue-mountains') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-thecrag-com-api-f067a02f/get_area_photos \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","url":"<string>"}'
```

### get_area_routes

List routes within a climbing area. Routes are extracted from the area's main page. Each route includes name, grade, style, star rating, and URL. Best results on leaf-level areas (crags) that directly contain routes rather than parent areas.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `url` | string | Yes | Full URL of the area page on thecrag.com (e.g. 'https://www.thecrag.com/en/climbing/australia/blue-mountains/centennial-glen') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-thecrag-com-api-f067a02f/get_area_routes \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","url":"<string>"}'
```

### get_route_details

Get detailed information about a specific climbing route including grade, star rating, description, location coordinates, length, climbing style, and breadcrumb navigation path.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full URL of the route page on thecrag.com (e.g. 'https://www.thecrag.com/en/climbing/australia/blue-mountains/route/5153578989') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-thecrag-com-api-f067a02f/get_route_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### search

Full-text search across climbing areas, routes, and climbers on theCrag.com. Returns results grouped by type (area, route, climber). Each result includes name and URL for further lookup.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword (e.g. 'Yosemite', 'El Capitan') |

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