GET /v1/states/mi/lotto-47/latest · Wed & Sat Drawings
Michigan Lotto 47 API Endpoint
Real-time API access for Michigan Lotto 47 winning numbers. Jackpot status verification and full historical draw archives.
API Endpoint
GET
https://api.uslotteryapi.com/v1/states/mi/lotto-47/latestFrequency: Wed & Sat at 7:29 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": "Lotto 47",
"state": "MI",
"draw_date": "2026-08-01",
"draw_time": "19:29:00 EST",
"winning_numbers": {
"main_balls": [3, 12, 17, 24, 39, 44]
},
"prizes": {
"top_prize": "$1,300,000"
},
"next_draw": {
"date": "2026-08-05",
"time": "19:29:00 EST"
}
},
"meta": {
"timestamp": "2026-08-01T19:35:10Z"
}
}cURL RequestCLI
curl -X GET "https://api.uslotteryapi.com/v1/states/mi/lotto-47/latest" \ -H "X-API-Key: YOUR_API_KEY"
PythonBackend
import requests
res = requests.get('https://api.uslotteryapi.com/v1/states/mi/lotto-47/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 Lotto 47 drawings held?
Lotto 47 drawings are conducted twice a week on Wednesdays and Saturdays at 7:29 PM Eastern Time.
What is the number matrix for Lotto 47?
Players choose 6 main numbers from 1 to 47.
How quickly are numbers available in the API?
API payloads update automatically within 5 minutes of drawing completion.