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

> Search upcoming football matches across multiple dates and instantly compare 1X2 betting odds from BetExplorer to find the best lines for your picks. Access daily match schedules with real-time odds data to help inform your betting decisions.

**Category:** Sports | **Website:** [betexplorer.com/](https://betexplorer.com/) | **Docs:** [parse.bot/marketplace/e19325ba-0ad4-47b4-826f-0a1b68aefa28/betexplorer-com-api](https://parse.bot/marketplace/e19325ba-0ad4-47b4-826f-0a1b68aefa28/betexplorer-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-betexplorer-com-api-e19325ba/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_matches

Retrieve all football matches scheduled or completed for a given date, grouped by country and league. Each match includes home/away teams, match status (FIN, upcoming time, live minute), final score when available, and 1X2 betting odds (home win, draw, away win). Results cover all leagues worldwide for the requested day. Odds are average closing odds; upcoming matches or reserve-league matches may have null odds.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date` | string | No | Date to retrieve matches for, ISO format YYYY-MM-DD. Defaults to today (UTC). |

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