GET /v1/lotto-america/latest · Mon, Wed, Sat
Lotto America API (US) Endpoint
Real-time JSON REST API for Lotto America. Access official winning numbers, Star Ball digits, All Star Bonus multipliers, and jackpot historical data across 15 states.
API Endpoint
GET
https://api.uslotteryapi.com/v1/lotto-america/latestFrequency: Mon, Wed, Sat 10:15 PM ET
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| date | string | Optional | Target draw date (YYYY-MM-DD). Defaults to latest draw. |
| limit | integer | Optional | Number of recent draws to return (1 to 50). Default: 1. |
Sample Response Payload
{
"status": "success",
"data": {
"game": "Lotto America",
"draw_date": "2026-08-01",
"draw_time": "22:15:00 EST",
"winning_numbers": {
"red_balls": [9, 14, 28, 36, 47],
"star_ball": 6,
"all_star_bonus": "3x"
},
"jackpot": {
"annuity": "$8,450,000",
"cash_option": "$4,100,000"
},
"next_draw": {
"date": "2026-08-03",
"estimated_jackpot": "$8,900,000"
}
},
"meta": {
"timestamp": "2026-08-01T22:21:15Z"
}
}cURL RequestCLI
curl -X GET "https://api.uslotteryapi.com/v1/lotto-america/latest" \ -H "X-API-Key: YOUR_API_KEY"
Node.jsBackend App
const res = await fetch('https://api.uslotteryapi.com/v1/lotto-america/latest', {
headers: { 'X-API-Key': 'YOUR_API_KEY' }
});
const { data } = await res.json();
console.log('Star Ball:', data.winning_numbers.star_ball);Free Developer Account
500 requests per month with developer instant API keys.
Get Free API KeyFrequently Asked Questions
When are Lotto America drawings held?
Lotto America drawings take place every Monday, Wednesday, and Saturday at approximately 10:15 PM Eastern Time.
What is the ball matrix for Lotto America?
Players pick 5 red balls from 1 to 52 and 1 Star Ball from 1 to 10.
Does the API payload include the All Star Bonus multiplier?
Yes. Every draw payload contains the All Star Bonus multiplier value (2x, 3x, 4x, or 5x).