GET /v1/california/superlotto-plus/latest · Daily Drawings
California SuperLotto Plus API Endpoint
Real-time API access for California SuperLotto Plus 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/california/superlotto-plus/latestFrequency: Wednesdays and Saturdays at 7:57 PM PT
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": "California SuperLotto Plus",
"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/california/superlotto-plus/latest" \ -H "X-API-Key: YOUR_API_KEY"
PythonBackend
import requests
res = requests.get('https://api.uslotteryapi.com/v1/california/superlotto-plus/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 California SuperLotto Plus drawings held?
California SuperLotto Plus drawings are conducted daily (7 nights a week) at 10:38 PM Eastern Time.
What is the number matrix for California SuperLotto Plus?
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.