GET /v1/states/mi/daily-3/latest · 2x Daily Drawings
Michigan Daily 3 API Endpoint
Real-time API access for Michigan Daily 3 winning numbers (Midday & Evening). Prize status verification and full historical draw archives.
API Endpoint
GET
https://api.uslotteryapi.com/v1/states/mi/daily-3/latestFrequency: 2x Daily
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| date | string | Optional | Specific draw date (YYYY-MM-DD). Defaults to latest draw. |
| draw | string | Optional | Session filter (midday or evening). |
| limit | integer | Optional | Number of recent draws to return (1 to 50). Default: 1. |
Sample Response Payload
{
"status": "success",
"data": {
"game": "Daily 3",
"state": "MI",
"draw_date": "2026-08-01",
"draw_time": "19:29:00 EST",
"draw_name": "Evening",
"winning_numbers": {
"main_balls": [4, 8, 2]
},
"prizes": {
"top_prize": "$500"
},
"next_draw": {
"date": "2026-08-02",
"time": "12:59:00 EST",
"draw_name": "Midday"
}
},
"meta": {
"timestamp": "2026-08-01T19:35:10Z"
}
}cURL RequestCLI
curl -X GET "https://api.uslotteryapi.com/v1/states/mi/daily-3/latest" \ -H "X-API-Key: YOUR_API_KEY"
PythonBackend
import requests
res = requests.get('https://api.uslotteryapi.com/v1/states/mi/daily-3/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 Daily 3 drawings held?
Daily 3 drawings are conducted twice a day at 12:59 PM (Midday) and 7:29 PM (Evening) Eastern Time.
What is the number matrix for Daily 3?
Players choose 3 digits, each ranging from 0 to 9.
How do I specify the Midday or Evening draw?
You can append `?draw=midday` or `?draw=evening` to the endpoint. By default, it returns the latest available draw.