# 57hours — 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 book outdoor adventures from 57hours.com by discovering available trips, activity types, and experienced guide information all in one place. Get detailed trip specifics including pricing, itineraries, and guide profiles to find the perfect adventure for your next getaway.

**Category:** Travel | **Website:** [57hours.com/adventure/](https://57hours.com/adventure/) | **Docs:** [parse.bot/marketplace/e0e68921-4ce6-4db2-bd18-2f1148c8f0b1/57hours-com-api](https://parse.bot/marketplace/e0e68921-4ce6-4db2-bd18-2f1148c8f0b1/57hours-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-57hours-com-api-e0e68921/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_adventure_details

Retrieve full details for a specific adventure listing by its URL slug. Returns the adventure title, short description, activity type, location, and detailed guide information including names, credentials/taglines (e.g. IFMGA, ACMG, UIAGM certifications), bios, and ratings.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The URL slug of the adventure (e.g. 'grand-canyon-guided-backpacking-trip'). Found in the adventure URL path: 57hours.com/adventure/<slug>/. |

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

### search_adventures

Search outdoor adventure listings by keyword, activity type, or country. Returns paginated results with basic listing info including title, price, duration, location, activity, and URL. Results are ordered by relevance to the search query.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `activity` | string | No | Filter by activity type (e.g. 'Hiking', 'Rock Climbing', 'Backcountry Skiing', 'Mountain Biking', 'Kiteboarding'). Case-sensitive, must match the site's activity labels. Omit or pass empty string for no activity filter. |
| `country` | string | No | Filter by country name (e.g. 'United States', 'Switzerland', 'Norway'). Case-sensitive, must match the site's country labels. |
| `hits_per_page` | integer | No | Number of results per page (max 100). |
| `page` | integer | No | Zero-based page number for pagination. |
| `query` | string | No | Free-text search query (e.g. 'hiking', 'ski touring Alps', 'Grand Canyon'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-57hours-com-api-e0e68921/search_adventures \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"activity":"<string>","country":"<string>","hits_per_page":"<integer>","page":"<integer>","query":"<string>"}'
```
