# Roam Africa — 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.

> Discover African travel destinations, visa requirements, and curated travel packages by browsing Roam Africa's comprehensive collection of country guides and organized itineraries. Plan your African adventure with instant access to destination information, travel guidance, and available packages filtered by country.

**Category:** Travel | **Website:** [app.roamafrica.co.za/en/](https://app.roamafrica.co.za/en/) | **Docs:** [parse.bot/marketplace/b299c029-03bc-4c6e-8066-faa321d0c020/app-roamafrica-co-za-api](https://parse.bot/marketplace/b299c029-03bc-4c6e-8066-faa321d0c020/app-roamafrica-co-za-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-app-roamafrica-co-za-api-b299c029/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_travel_guide

Retrieves the full content of a travel guide by its slug. Content includes visa requirements, fees, step-by-step instructions, and other travel information in Markdown format.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | URL slug of the travel guide (from list_travel_guides results). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-app-roamafrica-co-za-api-b299c029/get_travel_guide \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### list_destinations

Lists all destination countries available on the Roam Africa platform, with counts of tours and packages per country. Results come from both tours and travel packages.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-app-roamafrica-co-za-api-b299c029/list_destinations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_packages_by_country

Lists travel packages available for a specific destination country. Includes pricing, duration, inclusions/exclusions, and highlights.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country` | string | Yes | Destination country name (case-insensitive). Available countries can be found via list_destinations. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-app-roamafrica-co-za-api-b299c029/list_packages_by_country \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country":"<string>"}'
```

### list_travel_guides

Lists travel guide blog posts from Roam Africa. Optionally filter by tag to find visa-related guides or content on specific topics. Returns title, slug, category, tags, excerpt, and metadata for each guide.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `tag` | string | No | Filter guides by tag (case-insensitive). Use 'visa' for visa guides, 'travel documents' for document guides, or country names like 'kenya'. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-app-roamafrica-co-za-api-b299c029/list_travel_guides \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"tag":"<string>"}'
```
