# Mega Millions — 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 Mega Millions winning numbers and jackpot amounts, browse historical drawings, and discover the top jackpots across participating lottery states. Stay updated on lottery results and track winning combinations whenever you need them.

**Category:** Other | **Website:** [megamillions.com/](https://megamillions.com/) | **Docs:** [parse.bot/marketplace/c120ba0c-13c3-433d-882f-5141a6f79082/megamillions-com-api](https://parse.bot/marketplace/c120ba0c-13c3-433d-882f-5141a6f79082/megamillions-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-megamillions-com-api-c120ba0c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_drawing_history

Retrieve historical Mega Millions drawing results with pagination and optional date filtering. Returns winning numbers for each drawing in the specified range. Each page contains up to page_size results. Date parameters use MM/DD/YYYY format.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `end_date` | string | No | End date for filtering in MM/DD/YYYY format (e.g. '05/01/2026'). |
| `page_number` | integer | No | Page number for pagination. |
| `page_size` | integer | No | Number of results per page. |
| `start_date` | string | No | Start date for filtering in MM/DD/YYYY format (e.g. '01/01/2025'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-megamillions-com-api-c120ba0c/get_drawing_history \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"end_date":"<string>","page_number":"<integer>","page_size":"<integer>","start_date":"<string>"}'
```

### get_latest_results

Get the latest Mega Millions drawing results, including winning numbers, jackpot details, prize tiers, prize matrix, and next drawing date. Returns a single composite object with Drawing, Jackpot, PrizeTiers, PrizeMatrix, MatchWinners, and NextDrawingDate fields.

**Estimated cost:** Metered

_No parameters required._

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

### get_lottery_states

Get information about all participating Mega Millions lottery states, including contact details and lottery URLs.

**Estimated cost:** Metered

_No parameters required._

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

### get_top_jackpots

Get the top 10 historical Mega Millions jackpots ranked by amount descending, including draw date and winner information for each.

**Estimated cost:** Metered

_No parameters required._

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