New York Take 5 API (US) — Instant Draw Data
High-frequency JSON API for New York Take 5 drawings. Get real-time winning numbers, winner counts, and cash payout structures for both Midday and Evening sessions.
Take 5 Session Parameter & Payload
Query specific draw sessions using ?draw=evening or ?draw=midday.
curl -X GET "https://api.uslotteryapi.com/v1/states/ny/take5/latest?draw=evening" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json"Session Parameter Options:
?draw=latest(Default): Returns most recent draw (Midday or Evening).?draw=midday: Returns 2:30 PM ET drawing for date requested.?draw=evening: Returns 10:30 PM ET drawing for date requested.
{
"status": "success",
"data": {
"game_id": "ny-take5",
"game_name": "New York Take 5",
"state": "NY",
"draw_date": "2026-08-02",
"draw_session": "evening",
"draw_time": "22:30:00-04:00",
"winning_numbers": [4, 12, 19, 28, 35],
"total_winners": 42150,
"top_prize_winners": 2,
"top_prize_amount": "$28,450.50",
"payout_tiers": [
{ "tier": 1, "match": "5 of 5", "winners": 2, "prize": "$28,450.50" },
{ "tier": 2, "match": "4 of 5", "winners": 284, "prize": "$300.50" },
{ "tier": 3, "match": "3 of 5", "winners": 8410, "prize": "$16.00" },
{ "tier": 4, "match": "2 of 5", "winners": 33454, "prize": "Free Ticket" }
]
}
}Take 5 Prize Tier & Probability Reference
| Match Category | Winning Odds | Prize Pool Share | Typical Payout |
|---|---|---|---|
| 5 of 5 (Top Prize) | 1 in 575,757 | 50% of Prize Fund | $20,000 – $60,000 Pari-mutuel |
| 4 of 5 | 1 in 3,387 | 20% of Prize Fund | $250 – $500 |
| 3 of 5 | 1 in 103 | 30% of Prize Fund | $15 – $30 |
| 2 of 5 | 1 in 9.62 | Free Quick Pick Ticket | 1 Free Take 5 Play |
Take 5 API FAQs
How often is the New York Take 5 API updated?↓
New York Take 5 draws twice every day: Midday at 2:30 PM ET and Evening at 10:30 PM ET. The API publishes validated results within 3 minutes of each draw.
How do I filter between Take 5 Midday and Evening drawings?↓
Pass the `draw` parameter in your request query string: `?draw=midday` for afternoon results, `?draw=evening` for night results, or omit it to retrieve the most recent draw.
What numbers are drawn in New York Take 5?↓
Take 5 uses a 5/39 matrix where 5 winning numbers are selected from a pool of 1 through 39.
Are Take 5 pari-mutuel cash prizes included in the JSON payload?↓
Yes. Once prize audit calculations finish, the payload populates total winning tickets and exact cash amounts for 5-of-5, 4-of-5, and 3-of-5 tiers.
Can I query historical Take 5 data for both drawing sessions?↓
Yes, historical endpoints support pagination and filtering by date range, drawing session, or year back to 2010.