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

> Access sports data from the Betano platform across multiple regional sites. Retrieve available regions, browse sports categories, and view event details including schedules, participating teams or players, and betting markets for upcoming and live matches.

**Category:** Sports | **Website:** [betano.com/](https://betano.com/) | **Docs:** [parse.bot/marketplace/3b3f69f4-45a6-4726-91b7-f6a70aa15857/betano-com-api](https://parse.bot/marketplace/3b3f69f4-45a6-4726-91b7-f6a70aa15857/betano-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-betano-com-api-3b3f69f4/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_event_details

Get detailed odds and markets for a specific event. Note: May be blocked by regional geo-fencing.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_id` | string | Yes | Event ID |
| `region_id` | string | Yes | Region ID |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-betano-com-api-3b3f69f4/get_event_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"event_id":"<string>","region_id":"<string>"}'
```

### get_regions

Returns the complete list of regional Betano platforms worldwide (approximately 20 regions). Each region includes a short identifier, display name, site URL, and BCP-47 language tag. The data is static — it changes only when Betano launches or retires a regional site.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-betano-com-api-3b3f69f4/get_regions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
