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

> Check the latest winning numbers and jackpot amounts across all US lotteries, and view detailed prize breakdowns by state and game. Stay updated on lottery results instantly without visiting multiple lottery websites.

**Category:** Other | **Website:** [lotteryusa.com/](https://lotteryusa.com/) | **Docs:** [parse.bot/marketplace/14068c7f-fd7c-46fe-906a-3e16af86b519/lotteryusa-com-api](https://parse.bot/marketplace/14068c7f-fd7c-46fe-906a-3e16af86b519/lotteryusa-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-lotteryusa-com-api-14068c7f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_game_prizes

Collects prize tables including prize tiers, odds, and multiplier details for a specific lottery game. Works with national games (e.g. 'powerball', 'mega-millions') and state-specific games (e.g. 'california/super-lotto-plus'). Each table contains column headers and row data keyed by those headers. Returns an empty prize_tables array if the game page has no prize table.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `game_path` | string | Yes | Relative path to the game, such as 'powerball', 'mega-millions', or 'california/super-lotto-plus'. Can be derived from game_url in get_state_results by removing 'https://www.lotteryusa.com/' prefix and trailing slash. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lotteryusa-com-api-14068c7f/get_game_prizes \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"game_path":"<string>"}'
```

### get_state_results

Retrieves the latest winning numbers, jackpot amounts, and drawing dates for every lottery game in a given state. Returns results from the most recent drawings. Each game entry includes its winning numbers (typed as regular or special), an optional multiplier string, the draw date, the jackpot amount, and a game_url that can be converted to a game_path for get_game_prizes.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `state` | string | Yes | State slug as returned by list_states (e.g. 'california', 'texas', 'new-york'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lotteryusa-com-api-14068c7f/get_state_results \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"state":"<string>"}'
```

### list_states

Returns all US states and territories that have lottery coverage on the site. Each entry provides a display name and a URL slug. The slug is the required input for get_state_results. The list is stable (rarely changes) and contains ~47 entries.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lotteryusa-com-api-14068c7f/list_states \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
