# Traceodds Qzz — 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.

> Get AI-powered sports betting analysis with upcoming match fixtures ranked by value scores, historical betting picks with documented results, and detailed match reports featuring Dixon-Coles model predictions to inform your betting decisions. Access comprehensive data on upcoming games, past performance picks, and in-depth match analytics all in one platform.

**Category:** Sports | **Website:** [traceodds.qzz.io/picks](https://traceodds.qzz.io/picks) | **Docs:** [parse.bot/marketplace/a7b71ee8-9fef-43a6-9eb0-896246e0735b/traceodds-qzz-io-api](https://parse.bot/marketplace/a7b71ee8-9fef-43a6-9eb0-896246e0735b/traceodds-qzz-io-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-traceodds-qzz-io-api-a7b71ee8/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_fixtures

Get upcoming match fixtures across all tracked leagues with AI-computed value index, stability index, recommended picks, odds, hit rates, and expected value. Returns fixtures for approximately the next 7 days.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-traceodds-qzz-io-api-a7b71ee8/get_fixtures \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_match_report

Get a detailed AI analysis report for a specific match, including Dixon-Coles model predictions, expected goals, BTTS probability, EV calculations, main pick recommendation, pre-match intelligence, and AI-generated insights.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `league_key` | string | Yes | League identifier key (e.g. 'soccer_fifa_world_cup', 'soccer_sweden_superettan', 'soccer_brazil_serie_b', 'soccer_finland_veikkausliiga', 'soccer_league_of_ireland', 'soccer_chile_campeonato', 'soccer_spain_segunda_division'). Available values can be found in the 'league_key' field from get_fixtures endpoint. |
| `match_id` | string | Yes | Pipe-separated lowercase team names identifying the match (e.g. 'spain\|cape verde'). Available values can be found in the 'id' field from get_fixtures endpoint. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-traceodds-qzz-io-api-a7b71ee8/get_match_report \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"league_key":"<string>","match_id":"<string>"}'
```

### get_picks

Get the current bankroll stats and recent betting history (last ~50 picks) with match details, bet specifics, confidence scores, results, and profit/loss amounts.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-traceodds-qzz-io-api-a7b71ee8/get_picks \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
