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

> Retrieve historical round data and game information from crash-style multiplier games like Aviator and Chicken Road to analyze prediction patterns and platform updates. Monitor game performance metrics and stay informed about the latest platform changes across supported titles.

**Category:** Entertainment | **Website:** [aviatorai.shop/](https://aviatorai.shop/) | **Docs:** [parse.bot/marketplace/a7a5e1b2-e1b0-4e46-9de5-7c33e595e015/aviatorai-shop-api](https://parse.bot/marketplace/a7a5e1b2-e1b0-4e46-9de5-7c33e595e015/aviatorai-shop-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-aviatorai-shop-api-a7a5e1b2/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### check_updates

Check for platform version updates. Returns whether an update is available, the latest version number, release notes, and whether the update is mandatory.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `current_version` | string | No | Semantic version string to check against (e.g. '1.0.0', '0.1.0'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-aviatorai-shop-api-a7a5e1b2/check_updates \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"current_version":"<string>"}'
```

### get_rounds

Retrieve the 50 most recent prediction rounds with multiplier outcomes. Each round represents a completed game result with its crash multiplier and timestamp. Results are ordered newest-first and refresh in near real-time as new rounds complete.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-aviatorai-shop-api-a7a5e1b2/get_rounds \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_games

List all available prediction game models on the platform. Returns the full catalog of 19 supported games with their identifiers, names, descriptions, and icons. The catalog is static and reflects the platform's current game offerings.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-aviatorai-shop-api-a7a5e1b2/list_games \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
