# Surebet — 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 arbitrage bets, middle bets, and value bets across multiple bookmakers and sports. Retrieve odds data, profit percentages, and bookmaker metadata to compare betting opportunities programmatically.

**Category:** Sports | **Website:** [surebet.com/](https://surebet.com/) | **Docs:** [parse.bot/marketplace/64fc46a7-ba2b-48c8-acfa-a14b4cc31508/surebet-com-api](https://parse.bot/marketplace/64fc46a7-ba2b-48c8-acfa-a14b4cc31508/surebet-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-surebet-com-api-64fc46a7/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_bookmakers

Fetch the full list of supported bookmakers with their IDs, names, status flags, and links. Returns all bookmakers in a single page.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-surebet-com-api-64fc46a7/get_bookmakers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_middles

Fetch middles (overlapping bets) opportunities. Returns paginated results with expected value, bet amount, probability, and potential win for each middle. Paginates via integer page parameter.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-surebet-com-api-64fc46a7/get_middles \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>"}'
```

### get_sports

Fetch the full list of supported sports with their internal IDs and reference codes. Returns all sports in a single page.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-surebet-com-api-64fc46a7/get_sports \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_surebets

Fetch surebets (arbitrage opportunities) with optional profit filters and sort order. Returns paginated results. Each surebet contains prongs (JSON-encoded leg details with bookmaker, odds, teams, tournament), profit percentage, and ROI. Paginates via integer page parameter. Note: Profit > 1% typically requires a paid account on the source site.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `max_profit` | number | No | Maximum profit percentage filter (e.g. 2.0 for 2%). |
| `min_profit` | number | No | Minimum profit percentage filter (e.g. 0.5 for 0.5%). |
| `order` | string | No | Sort order for results. |
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-surebet-com-api-64fc46a7/get_surebets \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"max_profit":"<number>","min_profit":"<number>","order":"<string>","page":"<integer>"}'
```

### get_valuebets

Fetch valuebets (overvalued bets) opportunities. Returns paginated results with detailed prong data for each valuebet. Paginates via integer page parameter.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-surebet-com-api-64fc46a7/get_valuebets \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>"}'
```
