GET/api/v1/draws/latest

Latest Winning Numbers Endpoint

Retrieve the most recent verified draw results for Powerball, Mega Millions, or state lotteries. Returns white ball numbers, power balls/mega balls, and multipliers.

Query Parameters

ParameterTypeRequiredDefaultDescription
gamestringRequiredNoneGame identifier slug, e.g. powerball, mega-millions, ca-superlotto-plus.
statestringOptionalallTwo-letter US state code filter, e.g. CA, NY, TX.

Request Code Examples

Execute Request
curl -X GET "https://uslotteryapi.com/api/v1/draws/latest?game=powerball" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Accept: application/json"

200 OK JSON Response Schema

{
  "status": "success",
  "data": {
    "game_slug": "powerball",
    "game_name": "Powerball",
    "draw_id": "pb_2026_08_01",
    "draw_date": "2026-08-01",
    "winning_numbers": [12, 24, 33, 41, 58],
    "powerball": 17,
    "multiplier": 3,
    "double_play_numbers": [5, 19, 28, 44, 62, 11],
    "estimated_jackpot": 420000000,
    "cash_option": 198500000,
    "verified": true,
    "updated_at": "2026-08-01T23:02:15Z"
  }
}

JSON Response Fields

FieldTypeDescription
winning_numbersarray<number>Array of sorted white ball winning numbers drawn.
powerball / mega_ballnumberThe special red Powerball or Mega Ball drawn.
multipliernumberPower Play or Megaplier multiplier digit (e.g. 2, 3, 4, 5, 10).
verifiedbooleanFlag indicating if results are certified by state lottery officials.