# Betao — 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 casino game performance and multiplier wins from Betão's Brazilian platform to analyze top payouts and identify the biggest winning moments. Monitor real-time betting data to stay informed on the latest game results and multiplier records.

**Category:** Entertainment | **Website:** [betao.bet.br/play/7fly-popok-gaming](https://betao.bet.br/play/7fly-popok-gaming) | **Docs:** [parse.bot/marketplace/60da4d00-faec-4d5e-9a5b-cebb6b179886/betao-bet-br-api](https://parse.bot/marketplace/60da4d00-faec-4d5e-9a5b-cebb6b179886/betao-bet-br-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-betao-bet-br-api-60da4d00/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_latest_bets

Retrieve the top bets classification for a casino game, ranked either by highest multiplier or by largest win amount. Returns player bet details including bet amount, win amount, multiplier, and player statistics. Results are filtered by time range (today, last 3 days, or last 7 days). Accepts either a numeric game_id or a game slug for identification; when game_slug is provided, the game ID is resolved from the platform's game catalog.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `game_id` | string | No | Numeric game identifier (e.g. '555559203' for 7Fly). Either game_id or game_slug must be provided. |
| `game_slug` | string | No | Game slug from the URL path (e.g. '7fly-popok-gaming'). Used to resolve game_id from the platform catalog. Either game_id or game_slug must be provided. |
| `limit` | integer | No | Maximum number of results to return. |
| `range` | string | No | Time range filter for results. |
| `type` | string | No | Classification type. 'top_multipliers' ranks by highest multiplier; 'big_wins' ranks by largest win amount. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-betao-bet-br-api-60da4d00/get_latest_bets \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"game_id":"<string>","game_slug":"<string>","limit":"<integer>","range":"<string>","type":"<string>"}'
```
