# Reality — 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 live streaming event listings, detailed event information, and participant rankings from the REALITY virtual platform to discover shows and track leaderboard standings. Build applications that keep users informed about upcoming events and help them monitor competitive results in real-time.

**Category:** Streaming Video | **Website:** [reality.app/events/23542](https://reality.app/events/23542) | **Docs:** [parse.bot/marketplace/2381f9ab-00f7-4391-81e8-c8184f4a3f3d/reality-app-api](https://parse.bot/marketplace/2381f9ab-00f7-4391-81e8-c8184f4a3f3d/reality-app-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-reality-app-api-2381f9ab/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_event

Get detailed information about a specific REALITY broadcaster event by its ID. Returns full event metadata including HTML description, score thresholds, constraints, schedule dates, and page design configuration.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_id` | string | Yes | Numeric event ID (e.g. '23542'). Obtain from list_events results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-reality-app-api-2381f9ab/get_event \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"event_id":"<string>"}'
```

### get_event_results

Get participant leaderboard/rankings for a specific REALITY broadcaster event. Returns paginated results with each participant's rank, score, and streamer profile information. Each page returns up to 30 participants.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_id` | string | Yes | Numeric event ID (e.g. '23542'). Obtain from list_events results. |
| `page` | integer | No | Page number for pagination (1-based). Each page returns up to 30 results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-reality-app-api-2381f9ab/get_event_results \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"event_id":"<string>","page":"<integer>"}'
```

### list_events

List all broadcaster events on REALITY platform. Returns the full catalog of past and present events with summary metadata including dates, thresholds, and category. No pagination — returns all events in a single response.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-reality-app-api-2381f9ab/list_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
