GET /v1/states/ma/megabucks/latest · Mon, Wed, Sat
Massachusetts Megabucks API Endpoint
Real-time API access for MA Megabucks winning numbers. Jackpot status verification and full historical draw archives.
API Endpoint
GET
https://api.uslotteryapi.com/v1/states/ma/megabucks/latestFrequency: Mon, Wed, Sat at 9:00 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": "Megabucks",
"state": "MA",
"draw_date": "2026-08-01",
"draw_time": "21:00:00 EST",
"winning_numbers": {
"main_balls": [4, 15, 23, 29, 36, 42]
},
"prizes": {
"top_prize": "$1,500,000"
},
"next_draw": {
"date": "2026-08-03",
"time": "21:00:00 EST"
}
},
"meta": {
"timestamp": "2026-08-01T21:05:10Z"
}
}cURL RequestCLI
curl -X GET "https://api.uslotteryapi.com/v1/states/ma/megabucks/latest" \ -H "X-API-Key: YOUR_API_KEY"
PythonBackend
import requests
res = requests.get('https://api.uslotteryapi.com/v1/states/ma/megabucks/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 Megabucks drawings held?
Megabucks drawings are conducted three times a week on Mondays, Wednesdays, and Saturdays at 9:00 PM Eastern Time.
What is the number matrix for Megabucks?
Players choose 6 main numbers from 1 to 44.
How quickly are numbers available in the API?
API payloads update automatically within 5 minutes of drawing completion.