GET /v1/georgia/cash3/latest · Daily Drawings
Georgia Cash 3 API Endpoint
Real-time API access for Georgia Cash 3 daily winning numbers (26 US states). $1,000/day for life top prize verification and full historical draw archives.
API Endpoint
GET
https://api.uslotteryapi.com/v1/georgia/cash3/latestFrequency: 3x Daily (Midday, Evening, Night)
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 daily draws to return (1 to 50). Default: 1. |
Sample Response Payload
{
"status": "success",
"data": {
"game": "Georgia Cash 3",
"draw_date": "2026-08-02",
"draw_time": "22:38:00 EST",
"winning_numbers": {
"main_balls": [4, 15, 22, 31, 46],
"lucky_ball": 12
},
"prizes": {
"top_prize": "$1,000 / Day for Life",
"second_prize": "$25,000 / Year for Life"
},
"next_draw": {
"date": "2026-08-03",
"time": "22:38:00 EST"
}
},
"meta": {
"timestamp": "2026-08-02T22:43:10Z"
}
}cURL RequestCLI
curl -X GET "https://api.uslotteryapi.com/v1/georgia/cash3/latest" \ -H "X-API-Key: YOUR_API_KEY"
PythonBackend
import requests
res = requests.get('https://api.uslotteryapi.com/v1/georgia/cash3/latest',
headers={'X-API-Key': 'YOUR_API_KEY'}).json()
print("Balls:", res['data']['winning_numbers']['main_balls'])
print("Lucky Ball:", res['data']['winning_numbers']['lucky_ball'])Free Tier Available
500 requests per month included on the free Developer Plan.
Get Free API KeyFrequently Asked Questions
How often are Georgia Cash 3 drawings held?
Georgia Cash 3 drawings are conducted daily (7 nights a week) at 10:38 PM Eastern Time.
What is the number matrix for Georgia Cash 3?
Players choose 5 main numbers from 1 to 48 and 1 Lucky Ball number from 1 to 18.
How quickly are numbers available in the API?
API payloads update automatically within 5 minutes of drawing completion.