GET /v1/states/ma/the-numbers-game-midday/latest · Daily Midday
MA The Numbers Game Midday API
Real-time API access for MA The Numbers Game Midday winning numbers. Verify payouts and access full historical draw archives.
API Endpoint
GET
https://api.uslotteryapi.com/v1/states/ma/the-numbers-game-midday/latestFrequency: Daily at 12:55 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": "The Numbers Game Midday",
"state": "MA",
"draw_date": "2026-08-01",
"draw_time": "12:55:00 EST",
"winning_numbers": {
"main_balls": [3, 7, 1, 9]
},
"next_draw": {
"date": "2026-08-02",
"time": "12:55:00 EST"
}
},
"meta": {
"timestamp": "2026-08-01T13:00:10Z"
}
}cURL RequestCLI
curl -X GET "https://api.uslotteryapi.com/v1/states/ma/the-numbers-game-midday/latest" \ -H "X-API-Key: YOUR_API_KEY"
PythonBackend
import requests
res = requests.get('https://api.uslotteryapi.com/v1/states/ma/the-numbers-game-midday/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 The Numbers Game Midday drawings held?
The Numbers Game Midday drawings are conducted daily at 12:55 PM Eastern Time.
What is the number matrix for The Numbers Game?
Players choose 4 digits, each from 0 to 9.
How quickly are numbers available in the API?
API payloads update automatically within 5 minutes of drawing completion.