GET /v1/lucky-for-life/latest · Daily Drawings
Lucky for Life API (US) Endpoint
Real-time API access for Lucky for Life daily winning numbers (26 US states). $1,000/day for life top prize verification and full historical draw archives.
API Endpoint
GET
https://api.uslotteryapi.com/v1/lucky-for-life/latestFrequency: Daily at 10:38 PM ET
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| date | string | Optional | Specific draw date (YYYY-MM-DD). Defaults to latest draw. |
| limit | integer | Optional | Number of recent daily draws to return (1 to 50). Default: 1. |
Sample Response Payload
{
"status": "success",
"data": {
"game": "Lucky for Life",
"draw_date": "2026-08-02",
"draw_time": "22:38:00 EST",
"winning_numbers": {
"main_balls": [4, 15, 22, 31, 46],
"lucky_ball": 12
},
"prizes": {
"top_prize": "$1,000 / Day for Life",
"second_prize": "$25,000 / Year for Life"
},
"next_draw": {
"date": "2026-08-03",
"time": "22:38:00 EST"
}
},
"meta": {
"timestamp": "2026-08-02T22:43:10Z"
}
}cURL RequestCLI
curl -X GET "https://api.uslotteryapi.com/v1/lucky-for-life/latest" \ -H "X-API-Key: YOUR_API_KEY"
PythonBackend
import requests
res = requests.get('https://api.uslotteryapi.com/v1/lucky-for-life/latest',
headers={'X-API-Key': 'YOUR_API_KEY'}).json()
print("Balls:", res['data']['winning_numbers']['main_balls'])
print("Lucky Ball:", res['data']['winning_numbers']['lucky_ball'])Free Tier Available
500 requests per month included on the free Developer Plan.
Get Free API KeyFrequently Asked Questions
How often are Lucky for Life drawings held?
Lucky for Life drawings are conducted daily (7 nights a week) at 10:38 PM Eastern Time.
What is the number matrix for Lucky for Life?
Players choose 5 main numbers from 1 to 48 and 1 Lucky Ball number from 1 to 18.
How quickly are numbers available in the API?
API payloads update automatically within 5 minutes of drawing completion.