# 1xBet Nigeria — 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 live sports odds and real-time game data across all supported sports from 1xBet Nigeria, letting you monitor current betting markets and available sports instantly. Build applications that track market odds and sports availability as they update in real-time.

**Category:** Sports | **Website:** [1xbet.ng/en?tag=d_757773m_97c_brand&gad_source=1&gad_campaignid=22421226206&gbraid=0AAAAA9ryjfjABdyHqTPI71obzSvUiQQcg&gclid=CjwKCAjwuuPRBhAnEiwA2Ji8eqj0fUxYNlGbuE4trC7OfQMT5xKIV_AWpgloWxrCnsTXUcjCl5GUYRoCG_4QAvD_BwE](https://1xbet.ng/en?tag=d_757773m_97c_brand&gad_source=1&gad_campaignid=22421226206&gbraid=0AAAAA9ryjfjABdyHqTPI71obzSvUiQQcg&gclid=CjwKCAjwuuPRBhAnEiwA2Ji8eqj0fUxYNlGbuE4trC7OfQMT5xKIV_AWpgloWxrCnsTXUcjCl5GUYRoCG_4QAvD_BwE) | **Docs:** [parse.bot/marketplace/f48afc16-508d-42b9-96a1-a04684a7f5fc/1xbet-ng-api](https://parse.bot/marketplace/f48afc16-508d-42b9-96a1-a04684a7f5fc/1xbet-ng-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-1xbet-ng-api-f48afc16/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_live_odds

Returns all currently live games with their betting odds and markets. Each game includes team names, current score, league info, and all available market odds (win, handicap, total, etc.). Optionally filter by sport_id to see only games for a specific sport. Live data changes frequently as games start and end; an empty result means no games are currently live for the given filter.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `sport_id` | string | No | Numeric sport ID to filter results (e.g. 1 for Football, 3 for Basketball, 4 for Tennis). Obtain valid IDs from the list_sports endpoint. When omitted, returns games across all sports. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-1xbet-ng-api-f48afc16/get_live_odds \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"sport_id":"<string>"}'
```

### list_sports

Returns all available sports on the platform with their numeric IDs, names, league counts, and total game counts. Use the sport_id values from this endpoint to filter live odds in get_live_odds. Results are ordered by sport_id ascending. The platform hosts 35+ sports ranging from Football to Esports.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-1xbet-ng-api-f48afc16/list_sports \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
