# 1wyvev — 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 data from 1wyvev.life.

**Category:** Entertainment | **Website:** [1wyvev.life/casino/play/v_1wingames:luckyjet](https://1wyvev.life/casino/play/v_1wingames:luckyjet) | **Docs:** [parse.bot/marketplace/52fc8e8f-2093-4de9-b308-ab2770e6bf75/1wyvev-life-api](https://parse.bot/marketplace/52fc8e8f-2093-4de9-b308-ab2770e6bf75/1wyvev-life-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-1wyvev-life-api-52fc8e8f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_game_info

Retrieve detailed information about a specific casino game by its ID. Returns game metadata including provider details and demo availability.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `game_id` | string | Yes | Unique game identifier in provider:slug format (e.g. 'v_1wingames:luckyjet'). Obtainable from list_games results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-1wyvev-life-api-52fc8e8f/get_game_info \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"game_id":"<string>"}'
```

### list_categories

Retrieve all casino game categories with their game counts. Categories are grouped by preset (casino, live-games, quick-games). Results are auto-iterated as a single page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `preset` | string | No | Casino section preset to filter categories. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-1wyvev-life-api-52fc8e8f/list_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"preset":"<string>"}'
```

### list_games

List casino games within a specific category. When category_slug is provided, returns games for that category only; otherwise returns all categories with their games. Results are auto-iterated as a single page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_slug` | string | No | Category slug to filter games (e.g. '1win-games', 'popular', 'slots'). Obtainable from list_categories results. When omitted, returns all categories with games. |
| `preset` | string | No | Casino section preset. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-1wyvev-life-api-52fc8e8f/list_games \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_slug":"<string>","preset":"<string>"}'
```

### list_providers

Retrieve all casino game providers with their game counts. Returns the complete provider catalog available on the platform.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-1wyvev-life-api-52fc8e8f/list_providers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
