# Psel — 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 for live and upcoming sports events, check real-time odds, and browse betting options across multiple sports on Parions Sport En Ligne. Access current sports listings, filter events by sport, and retrieve the latest betting markets and odds data.

**Category:** Sports | **Website:** [psel.com/](https://psel.com/) | **Docs:** [parse.bot/marketplace/85b2eaae-abee-4450-9de3-ef7eec972823/psel-com-api](https://parse.bot/marketplace/85b2eaae-abee-4450-9de3-ef7eec972823/psel-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-psel-com-api-85b2eaae/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_live_events

Retrieve currently live sports events with their top betting markets and real-time odds across all sports.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of live events to return. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-psel-com-api-85b2eaae/get_live_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>"}'
```

### get_sports

Fetch list of available sports, categories, and competitions from Parions Sport En Ligne. Use the returned IDs for subsequent search_events calls.

**Estimated cost:** Metered

_No parameters required._

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

### search_events

Search for upcoming sports events by sport ID. Returns events with their betting markets and odds. Use sport IDs from get_sports endpoint.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of events to return. |
| `sport_id` | string | No | Sport ID to filter events. Common values: 240 (Football), 239 (Tennis), 227 (Basketball), 22877 (Rugby), 226 (Baseball). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-psel-com-api-85b2eaae/search_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","sport_id":"<string>"}'
```
