# 1win — 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.

> Track live crash game results and multipliers from Lucky Jet on 1win, viewing historical round outcomes, current active bets, and the leaderboard of highest multipliers achieved. Monitor real-time game data to analyze patterns and stay updated on top-performing rounds.

**Category:** Entertainment | **Website:** [1win.com/casino/play/v_1wingames:luckyjet](https://1win.com/casino/play/v_1wingames:luckyjet) | **Docs:** [parse.bot/marketplace/00a26bcf-0dcd-455d-bc7e-8b5e1f4dc19f/1win-com-api](https://parse.bot/marketplace/00a26bcf-0dcd-455d-bc7e-8b5e1f4dc19f/1win-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-1win-com-api-00a26bcf/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_current_round

Returns the current or most recently completed Lucky Jet round along with all active bets placed in that round. Includes round metadata (coefficient, start time, outcome) and up to 50 individual bets with user IDs, bet sizes in original currency and USD equivalent.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-1win-com-api-00a26bcf/get_current_round \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_rounds_history

Returns the most recent Lucky Jet game rounds (approximately 20). Each round includes the crash multiplier (topCoefficient), provably fair hash and salt for verification, and a unique round ID. Results are ordered from most recent to oldest.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-1win-com-api-00a26bcf/get_rounds_history \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_top_coefficients

Returns the top 20 highest crash multipliers from Lucky Jet rounds within a specified time interval, sorted descending. Includes provably fair hash and salt for each round.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `interval` | string | No | Time interval for the leaderboard. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-1win-com-api-00a26bcf/get_top_coefficients \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"interval":"<string>"}'
```
