GET /v1/states/oh/classic-lotto/latest · Mon, Wed, Sat
Ohio Classic Lotto API Endpoint
Real-time API access for OH Classic Lotto winning numbers. Jackpot status verification and full historical draw archives.
API Endpoint
GET
https://api.uslotteryapi.com/v1/states/oh/classic-lotto/latestFrequency: Mon, Wed, Sat at 7:05 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 draws to return (1 to 50). Default: 1. |
Sample Response Payload
{
"status": "success",
"data": {
"game": "Classic Lotto",
"state": "OH",
"draw_date": "2026-08-01",
"draw_time": "19:05:00 EST",
"winning_numbers": {
"main_balls": [5, 12, 19, 28, 41, 47]
},
"prizes": {
"top_prize": "$2,300,000"
},
"next_draw": {
"date": "2026-08-03",
"time": "19:05:00 EST"
}
},
"meta": {
"timestamp": "2026-08-01T19:10:10Z"
}
}cURL RequestCLI
curl -X GET "https://api.uslotteryapi.com/v1/states/oh/classic-lotto/latest" \ -H "X-API-Key: YOUR_API_KEY"
PythonBackend
import requests
res = requests.get('https://api.uslotteryapi.com/v1/states/oh/classic-lotto/latest',
headers={'X-API-Key': 'YOUR_API_KEY'}).json()
print("Winning Numbers:", res['data']['winning_numbers']['main_balls'])Free Tier Available
500 requests per month included on the free Developer Plan.
Get Free API KeyFrequently Asked Questions
How often are Classic Lotto drawings held?
Classic Lotto drawings are conducted three times a week on Mondays, Wednesdays, and Saturdays at 7:05 PM Eastern Time.
What is the number matrix for Classic Lotto?
Players choose 6 main numbers from 1 to 49.
How quickly are numbers available in the API?
API payloads update automatically within 5 minutes of drawing completion.