Powerball Jackpot Tracker API (US) Endpoint
Integrate real-time Powerball jackpot estimates, lump-sum cash option values, rollover streak counters, and automated threshold alerts into your app.
https://api.uslotteryapi.com/v1/powerball/jackpotRequest Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| include_history | boolean | Optional | Include previous 10 jackpot rollover records (true/false). Default: false. |
| currency | string | Optional | Currency formatting (USD, EUR, CAD). Default: USD. |
Sample Jackpot JSON Response
{
"status": "success",
"data": {
"game": "Powerball",
"status": "ROLLOVER",
"current_jackpot": {
"annuity": "$365,000,000",
"annuity_raw": 365000000,
"cash_option": "$174,800,000",
"cash_option_raw": 174800000,
"currency": "USD"
},
"rollover_info": {
"consecutive_rollovers": 14,
"last_win_date": "2026-06-17",
"last_winning_amount": "$215,000,000"
},
"next_draw": {
"date": "2026-08-03",
"time": "22:59:00 EST",
"days_until_draw": 1
}
},
"meta": {
"timestamp": "2026-08-02T12:00:00Z"
}
}curl -X GET "https://api.uslotteryapi.com/v1/powerball/jackpot" \ -H "X-API-Key: YOUR_API_KEY"
const res = await fetch('https://api.uslotteryapi.com/v1/powerball/jackpot', {
headers: { 'X-API-Key': 'YOUR_API_KEY' }
});
const { data } = await res.json();
console.log('Powerball Annuity:', data.current_jackpot.annuity);
console.log('Cash Value:', data.current_jackpot.cash_option);๐ฐ Cash vs Annuity Breakdown
Provides raw numeric integers and localized string formats for both lump-sum cash and 30-year annuity.
๐ Webhook Threshold Alerts
Receive automatic push events to your API endpoint whenever the jackpot crosses $500M or $1 Billion.
๐ Rollover Tracking
Track consecutive rollover streaks, total draw build-ups, and exact date of the last jackpot hit.
Start Monitoring Powerball Jackpots
Get 500 free requests per month with instant API key access. No credit card required.
Get Free API KeyFrequently Asked Questions
How often is the estimated Powerball jackpot updated?
Jackpot estimates update immediately following a draw confirmation and are revised daily based on multi-state ticket sales trends.
Does the API provide both Annuity and Cash Option amounts?
Yes. Every jackpot payload returns the estimated 30-year annuity total as well as the immediate lump-sum cash value amount.
Can I receive Webhook notifications when the Powerball jackpot reaches $500M?
Yes. Pro and Enterprise subscribers can configure Webhooks to receive automatic HTTP POST alerts whenever the jackpot exceeds a custom dollar threshold.