# 1xBet Finland — 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 updates on live sporting events and instantly view current match status and betting odds from 1xBet to make informed wagering decisions. Get live event data as it happens so you can monitor games and track odds movements throughout competition.

**Category:** Sports | **Website:** [1xbet.fi/ru/live/football](https://1xbet.fi/ru/live/football) | **Docs:** [parse.bot/marketplace/25775a92-ec6d-44b0-8ddb-74174d1bb1e5/1xbet-fi-api](https://parse.bot/marketplace/25775a92-ec6d-44b0-8ddb-74174d1bb1e5/1xbet-fi-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-fi-api-25775a92/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_live_events

Retrieve currently live sporting events with real-time match status (score, period, time) and betting odds (coefficients). Returns main 1X2 odds, handicaps, and totals for each event. Results are filtered by sport; football (sport_id=1) is the default. Events reflect the current in-play state and odds shift in real time.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `count` | integer | No | Maximum number of events to return (1-100). |
| `sport_id` | string | No | Sport identifier. 1=Football, 2=Ice Hockey, 3=Basketball, 4=Tennis, 6=Volleyball. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-1xbet-fi-api-25775a92/get_live_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"count":"<integer>","sport_id":"<string>"}'
```
