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

> Track live soccer match scores and upcoming games while monitoring Asian handicap odds from multiple bookmakers to get instant alerts when betting lines match your criteria. Access real-time odds across all available leagues and bookmakers in one place.

**Category:** Sports | **Website:** [asianbetsoccer.com/](https://asianbetsoccer.com/) | **Docs:** [parse.bot/marketplace/4c845ca9-2119-497d-85cf-e96cf9d68b15/asianbetsoccer-com-api](https://parse.bot/marketplace/4c845ca9-2119-497d-85cf-e96cf9d68b15/asianbetsoccer-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-asianbetsoccer-com-api-4c845ca9/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_available_bookmakers

List available bookmakers supported by the API with their internal identifiers. The bookmaker list is static and represents all supported odds providers.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-asianbetsoccer-com-api-4c845ca9/get_available_bookmakers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_available_leagues

List available leagues from the current live score data. Returns leagues that have active or recently finished matches. The league list changes dynamically based on what matches are currently being played.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-asianbetsoccer-com-api-4c845ca9/get_available_leagues \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_livescore

Fetch live scores and odds for currently playing and recently finished matches. Returns match details including teams, scores, match time, and full Asian handicap and European odds from the selected bookmaker. Data refreshes every 60 seconds on the source site.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `bookmaker` | string | No | Bookmaker name for odds data. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-asianbetsoccer-com-api-4c845ca9/get_livescore \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"bookmaker":"<string>"}'
```

### get_next_games

Fetch upcoming matches and their odds for a given day offset (0 for today, 1 for tomorrow, etc.). Returns scheduled match times in UTC and full odds data from the selected bookmaker.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `bookmaker` | string | No | Bookmaker name for odds data. |
| `day_offset` | integer | No | Day offset from today (0=today, 1=tomorrow, 2=day after tomorrow, etc.). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-asianbetsoccer-com-api-4c845ca9/get_next_games \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"bookmaker":"<string>","day_offset":"<integer>"}'
```

### monitor_odds_alerts

Filter live matches for specific odds and handicap criteria. Scans all currently live and recently finished matches and returns those matching the specified championship substring, handicap line, and odds threshold. Useful for monitoring betting opportunities in real-time.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `championship` | string | No | Championship/league name substring to filter. Case-insensitive partial match against league names. |
| `handicap` | string | No | Target handicap line to match (e.g. -1.25, -0.5, 0, 1.5). |
| `odds_threshold` | number | No | Maximum Euro 1 odds threshold. Matches with euro1_cu below this value are included in alerts. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-asianbetsoccer-com-api-4c845ca9/monitor_odds_alerts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"championship":"<string>","handicap":"<string>","odds_threshold":"<number>"}'
```
