API documentation
Get Lotteries
Returns the customer-visible lottery catalog with state, ball count, and latest draw summary.
Section
19 / 27
01Introduction02Quickstart03Polling and integration04Sandbox fixtures05SDK starter06Embeddable widgets07API playground08OpenAPI spec09Postman collection10API changelog11Authentication12API key scopes13Freshness levels14Source confidence15Status monitoring16Rate limiting17Get countries18Get states19Get lotteries20Get lottery21Get schedules22Draw years23Lottery results24History export25Number frequency26Result checker27Error handling
Live API examples
Jump from the docs to real public pages that use the same read models.
Latest results browserSee the compact public result model with filters and draw dates.
Lottery catalogFind game names, states, ball counts, latest numbers, and API guides.
Maryland Pick 3 API guideOpen a concrete endpoint example using the same game shown in snippets.
Pricing and limitsCompare freshness targets, request limits, and integration features.
Customer integration centerSign in to check API keys, usage, webhook delivery, plan limits, and the next recommended action.
OpenAPI contractUse the machine-readable contract for code generation and integration tests.
Request
Use filters to keep payloads compact.
GET https://api.lotteryfeedapi.com/v1/lotteries?country=US&state=MD&ball_count=3
Response
The catalog returns every supported customer-visible game. Latest draw and compact schedule metadata are included when available; a delayed or missing result does not remove the game from the catalog.
{
"data": [
{
"game_code": "md-pick3-midday",
"name": "Maryland Pick 3 Midday",
"links": {
"canonical": "/lotteries/md-pick3-midday",
"latest_result": "/lotteries/md-pick3-midday",
"api": "/v1/lotteries/md-pick3-midday",
"api_docs": "/api-docs/lotteries",
"api_integration": "/lotteries/md-pick3-midday/api-integration",
"schedule_api": "/v1/schedules?game_code=md-pick3-midday"
},
"state": "Maryland",
"ball_count": 3,
"draw_schedule": {
"local_time": "12:27 PM ET",
"utc_time": "16:27 UTC",
"days": "Every day",
"timezone": "America/New_York",
"next_draw": {
"date": "2026-05-25",
"local_time": "12:27 PM EDT",
"utc_time": "16:27 UTC",
"utc_datetime": "2026-05-25T16:27:00Z",
"timezone": "America/New_York",
"polling_window": {
"first_check_after_utc": "2026-05-25T16:37:00Z",
"retry_until_utc": "2026-05-25T18:27:00Z",
"first_check_delay_minutes": 10,
"retry_window_minutes": 120
}
}
},
"latest_draw": {
"draw_date": "2026-05-25",
"numbers": ["2", "3", "6"],
"numbers_formatted": "2-3-6",
"source_confidence": {
"level": "official",
"label": "Official source",
"policy": "Numbers were published from the official or canonical lottery source path."
}
}
}
]
}Next: Get lottery