# Betfred — 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 real-time casino games, trending favorites, and upcoming sports matches from Betfred all in one place. Browse comprehensive sports configurations and discover which games are currently popular.

**Category:** Sports | **Website:** [betfred.com/](https://betfred.com/) | **Docs:** [parse.bot/marketplace/89102d93-b3cf-4501-a5f7-28ef69199771/betfred-com-api](https://parse.bot/marketplace/89102d93-b3cf-4501-a5f7-28ef69199771/betfred-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-betfred-com-api-89102d93/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_casino_games

Fetches the complete casino game catalog including slots, table games, and more. Returns game details such as title, brand, category, type, and image URL. The catalog is returned as a single page; use the SDK limit= kwarg to cap items client-side.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-betfred-com-api-89102d93/get_casino_games \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_popular_games

Fetches the biggest recent winnings across games, which serves as a proxy for game popularity and activity levels. Each record includes gameID, sport, tournament and category UUIDs, and the winning amount in ZAR.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-betfred-com-api-89102d93/get_popular_games \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_sports_config

Fetches the sportsbook configuration including betting limits, currency details (ZAR), available sports, top leagues, banners, and UI settings. Returns a single configuration object representing the current platform state.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-betfred-com-api-89102d93/get_sports_config \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_sports_matches

Fetches a list of upcoming sports match events with their UUIDs, tournament associations, category, sport, and closing times. Results are sorted by closing time. The sport filter determines which sport's events are returned.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of events to return. |
| `sport` | string | No | Sport type to filter by. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-betfred-com-api-89102d93/get_sports_matches \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","sport":"<string>"}'
```
