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

> Get real-time betting odds and sports listings from MSport Nigeria, browse available matches across different sports, and view detailed odds with all available markets for any match.

**Category:** Sports | **Website:** [www.msport.com/ng](https://www.msport.com/ng) | **Docs:** [parse.bot/marketplace/66be976c-1ff9-43d9-8a60-826f65ac887e/msport-com-api](https://parse.bot/marketplace/66be976c-1ff9-43d9-8a60-826f65ac887e/msport-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-msport-com-api-66be976c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_match_odds

Get all detailed betting odds for a specific match including all available markets (1x2, Over/Under, Double Chance, GG/NG, DNB, etc.) with outcome probabilities. Returns comprehensive market data not available in the get_matches listing view.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_id` | string | Yes | Match event identifier from get_matches endpoint (e.g. sr:match:66456904). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-msport-com-api-66be976c/get_match_odds \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"event_id":"<string>"}'
```

### get_matches

Get matches with betting odds for a given sport. Optionally filter by date. Returns matches with their main market odds (1x2, Over/Under, etc.). Each match includes an event_id usable as input to get_match_odds for full market detail.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date` | string | No | Filter matches by date in YYYY-MM-DD format. When omitted, returns all upcoming matches for the sport. |
| `sport_id` | string | No | Sport identifier from list_sports endpoint (e.g. sr:sport:1 for Soccer, sr:sport:2 for Basketball). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-msport-com-api-66be976c/get_matches \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date":"<string>","sport_id":"<string>"}'
```

### list_sports

List all available sports on MSport Nigeria with their current match counts. Each sport includes a sport_id usable as input to get_matches. The count reflects matches currently listed for pre-match betting.

**Estimated cost:** Metered

_No parameters required._

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