# Pari — 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 informed bets by accessing real-time football match odds and comprehensive match details from the pari.ru betting platform. Get current prices and detailed information to make better betting decisions quickly.

**Category:** Sports | **Website:** [pari.ru/sports/football](https://pari.ru/sports/football) | **Docs:** [parse.bot/marketplace/42d7ad47-4d74-4dd7-83c1-efc6ca758435/pari-ru-api](https://parse.bot/marketplace/42d7ad47-4d74-4dd7-83c1-efc6ca758435/pari-ru-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-pari-ru-api-42d7ad47/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_match_detail

Retrieve detailed match information with all available betting markets for a specific event. Returns full match data including sub-events (halves, corners, etc.) with their respective odds. Each factor entry has 'f' (market ID), 'v' (decimal odds coefficient), optionally 'p' (parameter in hundredths) and 'pt' (parameter display string).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_id` | string | Yes | Numeric event ID from get_prices results (e.g. '66039247'). |
| `lang` | string | No | Language code for team/competition names (e.g. 'ru', 'en'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-pari-ru-api-42d7ad47/get_match_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"event_id":"<string>","lang":"<string>"}'
```

### get_prices

Retrieve football match prices (odds) for all upcoming and live matches. Returns main-level matches with their basic market factors. Each match includes team names, start time, competition, and key betting odds. The factors array contains market odds where 'f' is the factor/market ID, 'v' is the coefficient (decimal odds), 'p' is the handicap/total parameter value (in hundredths), and 'pt' is the parameter display string.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `lang` | string | No | Language code for team/competition names (e.g. 'ru', 'en'). |
| `sport_id` | string | No | Numeric sport ID. 1 = Football. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-pari-ru-api-42d7ad47/get_prices \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"lang":"<string>","sport_id":"<string>"}'
```
