GET/api/v1/jackpots/current
Current Jackpot Data Endpoint
Retrieve live estimated annuity jackpots, cash lump sum options, and consecutive rollover counters for Powerball, Mega Millions, and state lotteries.
Query Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| game | string | Required | None | Game identifier slug, e.g. powerball or mega-millions. |
| currency | string | Optional | USD | Currency code for formatting. (Currently USD only). |
Jackpot Query Code Examples
Execute Query
curl -X GET "https://uslotteryapi.com/api/v1/jackpots/current?game=powerball" \
-H "x-api-key: YOUR_API_KEY" \
-H "Accept: application/json"200 OK Response Payload Schema
{
"status": "success",
"data": {
"game_slug": "powerball",
"game_name": "Powerball",
"estimated_jackpot": 420000000,
"formatted_jackpot": "$420 Million",
"cash_option": 198500000,
"formatted_cash_option": "$198.5 Million",
"currency": "USD",
"rollover_count": 14,
"next_draw_date": "2026-08-05T22:59:00Z",
"last_jackpot_hit_date": "2026-06-15",
"updated_at": "2026-08-03T01:30:00Z"
}
}