# Oddsplug — 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 profitable arbitrage betting opportunities across multiple sports and game types through Oddsplug's real-time odds data. Identify mismatches in betting lines to lock in guaranteed returns regardless of the game outcome.

**Category:** Sports | **Website:** [oddsplug.com/](https://oddsplug.com/) | **Docs:** [parse.bot/marketplace/bd98caaf-3e71-4a00-853a-e8e092cccb4d/oddsplug-com-api](https://parse.bot/marketplace/bd98caaf-3e71-4a00-853a-e8e092cccb4d/oddsplug-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-oddsplug-com-api-bd98caaf/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### fetch_arbitrages

Fetch current arbitrage betting opportunities. Returns a list of arbitrage opportunities showing the market, bookmakers involved, and the arbitrage percentage. Results can be filtered by sport and game type (prematch or live). Some fields (team names, odds) may be obscured for unauthenticated access.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `game_type` | string | No | Type of game to filter by. |
| `sport` | string | No | Sport to filter arbitrage opportunities by. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-oddsplug-com-api-bd98caaf/fetch_arbitrages \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"game_type":"<string>","sport":"<string>"}'
```
