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

> Place bets with confidence by accessing live and pre-match odds, match information, and league data across multiple sports from Melbet. Stay updated with real-time betting opportunities and comprehensive sports coverage to make informed wagering decisions.

**Category:** Sports | **Website:** [melbet.com/](https://melbet.com/) | **Docs:** [parse.bot/marketplace/b330fbc7-f75d-46ce-bc26-dc968c675bcf/melbet-com-api](https://parse.bot/marketplace/b330fbc7-f75d-46ce-bc26-dc968c675bcf/melbet-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-melbet-com-api-b330fbc7/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_match_odds

Retrieve complete betting markets for a specific match including 1X2, European Handicap, Over/Under, Correct Score, Double Chance, and all other available deep markets. Each market contains full outcome details with raw decimal odds and internal IDs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `language` | string | No | Language code for team and league names (e.g. en, ru, fr, de, es). |
| `match_id` | string | Yes | Numeric match identifier from list_matches results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-melbet-com-api-b330fbc7/get_match_odds \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"language":"<string>","match_id":"<string>"}'
```

### list_leagues

Retrieve available leagues and championships for a given sport. Returns all active leagues with their game counts.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `language` | string | No | Language code for league names (e.g. en, ru, fr, de, es). |
| `sport_id` | string | No | Numeric sport identifier. Common values: 1 (Football), 2 (Ice Hockey), 3 (Basketball), 4 (Tennis), 5 (Baseball), 6 (Volleyball), 10 (Table Tennis), 13 (American Football), 40 (Esports), 66 (Cricket). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-melbet-com-api-b330fbc7/list_leagues \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"language":"<string>","sport_id":"<string>"}'
```

### list_matches

Retrieve sports matches with basic betting odds (1X2, handicap, over/under). Supports filtering by sport and match mode (live or pre-match). Returns up to 50 matches per call ordered by start time proximity.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `count` | string | No | Number of matches to return (max 50). |
| `language` | string | No | Language code for team and league names (e.g. en, ru, fr, de, es). |
| `mode` | string | No | Match mode filter. |
| `sport_id` | string | No | Numeric sport identifier. Common values: 1 (Football), 2 (Ice Hockey), 3 (Basketball), 4 (Tennis), 5 (Baseball), 6 (Volleyball), 10 (Table Tennis), 13 (American Football), 40 (Esports), 66 (Cricket). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-melbet-com-api-b330fbc7/list_matches \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"count":"<string>","language":"<string>","mode":"<string>","sport_id":"<string>"}'
```
