# Oh Bet365 — 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.

> Retrieve current betting odds from Bet365 for major sports leagues, including spread, moneyline, and over/under totals. Compare betting lines across sports such as NBA, MLB, NHL, soccer, and tennis.

**Category:** Sports | **Website:** [www.oh.bet365.com/#/HO/](https://www.oh.bet365.com/#/HO/) | **Docs:** [parse.bot/marketplace/50b66ec9-0362-41e1-848b-ec14b3353f02/oh-bet365-com-api](https://parse.bot/marketplace/50b66ec9-0362-41e1-848b-ec14b3353f02/oh-bet365-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-oh-bet365-com-api-50b66ec9/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_recent_odds

Retrieves current betting odds for upcoming games in a specified sport from Bet365. Returns spread, total (over/under), and moneyline odds for US sports (NBA, NHL, MLB), 3-way moneyline (home/draw/away) for soccer, and match winner odds for tennis. The set of available games depends on the live schedule — off-season sports return an empty list. Each game includes a fixture_id, team names, start time, league, description, and market-specific odds in both American and fractional formats.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `sport` | string | No | Sport to get odds for. Accepted values: mlb, nba, nhl, soccer, tennis. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-oh-bet365-com-api-50b66ec9/get_recent_odds \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"sport":"<string>"}'
```
