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

> Find real-time arbitrage opportunities across sports and betting markets with guaranteed profit potential. Access match details, the highest odds available, and a complete breakdown of which bookmakers offer each surebet combination.

**Category:** Sports | **Website:** [betmonitor.com/](https://betmonitor.com/) | **Docs:** [parse.bot/marketplace/a3321be0-94f9-4b77-ba58-6094d7063e41/betmonitor-com-api](https://parse.bot/marketplace/a3321be0-94f9-4b77-ba58-6094d7063e41/betmonitor-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-betmonitor-com-api-a3321be0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_surebet_details

Retrieve detailed bookmaker information and all available odds for each outcome of a specific surebet. Returns odds from multiple bookmakers for each outcome, indicating which bookmaker offers the highest odd.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `id` | string | Yes | The surebet ID obtained from get_surebets results (e.g. '109575528_bs_0'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-betmonitor-com-api-a3321be0/get_surebet_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"id":"<string>"}'
```

### get_surebets

Get a list of currently available surebets from Betmonitor's surebets section. Results are sorted by profit percentage descending. The time filter restricts results to events starting within the specified window; if no events fall within that window, an empty list is returned.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `bettype` | string | No | Bet type filter. |
| `limit` | integer | No | Maximum number of surebets to return. |
| `sport` | string | No | Sport to filter by. |
| `time` | string | No | Time filter restricting results to events starting within this window from now. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-betmonitor-com-api-a3321be0/get_surebets \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"bettype":"<string>","limit":"<integer>","sport":"<string>","time":"<string>"}'
```
