Discover/powerball.com API
live

powerball.com APIpowerball.com

Retrieve Powerball drawing results, historical winning numbers, jackpot amounts, prize odds, and winner stories via the powerball.com API.

Endpoints
7
Updated
3mo ago
Try it

No input parameters required.

api.parse.bot/scraper/648c2a86-eb98-4206-a4e8-6c59b56940b4/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/648c2a86-eb98-4206-a4e8-6c59b56940b4/get_latest_powerball_drawing' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 7 totalclick to expand

Retrieve the most recent Powerball drawing result including winning numbers, jackpot amount, cash value, multiplier, and winners breakdown by prize tier.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "date": "string, drawing date",
    "cash_value": "string, cash value option amount",
    "multiplier": "string, Power Play multiplier value",
    "winning_numbers": "object containing white_balls (array of strings) and special_ball (string)",
    "estimated_jackpot": "string, estimated jackpot amount",
    "winners_breakdown": "array of objects with match, winners, prize, power_play_winners, power_play_prize"
  },
  "sample": {
    "data": {
      "date": "Wed, May 13, 2026",
      "cash_value": "$31.6 Million",
      "multiplier": "2x",
      "winning_numbers": {
        "white_balls": [
          "22",
          "31",
          "52",
          "56",
          "67"
        ],
        "special_ball": "15"
      },
      "estimated_jackpot": "$70 Million",
      "winners_breakdown": [
        {
          "match": "5 + PB",
          "prize": "Grand Prize",
          "winners": "0",
          "power_play_prize": "",
          "power_play_winners": ""
        },
        {
          "match": "5",
          "prize": "$1,000,000",
          "winners": "1",
          "power_play_prize": "$2,000,000",
          "power_play_winners": "0"
        }
      ]
    },
    "status": "success"
  }
}

About the powerball.com API

The powerball.com API exposes 7 endpoints covering current and historical lottery drawing data, jackpot figures, prize odds, and winner stories. The get_latest_powerball_drawing endpoint returns the most recent draw's winning numbers, Power Play multiplier, estimated jackpot, cash value, and a full winners breakdown by prize tier — all in a single call with no input parameters required.

Drawing Results and Historical Data

The get_latest_powerball_drawing endpoint returns the current draw's winning_numbers object (containing white_balls as a string array and special_ball), plus multiplier, estimated_jackpot, cash_value, and a winners_breakdown array detailing match tiers, winner counts, prizes, and Power Play equivalents. For any past or alternate-game draw, get_draw_result_by_date accepts a date parameter in YYYY-MM-DD format and a game_code — one of powerball, lotto-america, 2by2, double-play, or jackpot-usa — returning the same response shape. Omitting either parameter falls back to the most recent Powerball drawing.

Historical Range Queries and Multi-Game Jackpots

get_previous_results supports bulk historical pulls using start_date and end_date in MM/DD/YYYY format, and also accepts a game_code to query non-Powerball games. Each result in the returned array includes date, white_balls, special_ball, and multiplier. Note that this endpoint uses a different date format than get_draw_result_by_date, so check your parameters before calling. get_jackpot_info returns current jackpot snapshots across all supported games in one response: each entry in the jackpots array includes game, estimated_jackpot, cash_value, and date.

Prize Structure, Odds, and Winner Stories

get_prizes_and_odds returns two arrays: odds_chart with per-tier match descriptions and odds, and prize_chart with Power Play multiplier columns from power_play_2x through power_play_10x. This is useful for building prize calculators or displaying official odds. get_winners_gallery provides paginated winner entries via a page integer parameter; each entry includes the winner's state (name), amount, location, and image_url. get_all_games lists every supported game with its name and code, making it straightforward to enumerate valid game_code values for other endpoints.

Common use cases
  • Display live Powerball winning numbers and jackpot amounts on a lottery results dashboard.
  • Build a historical draw database by paginating through get_previous_results for multiple game codes.
  • Calculate expected value for each prize tier using odds and prize data from get_prizes_and_odds.
  • Track jackpot growth over time by polling get_jackpot_info across all supported games.
  • Show Power Play prize comparisons using the power_play_2x through power_play_10x columns in the prize chart.
  • Populate a lottery app's game selector using get_all_games to enumerate supported game codes.
  • Render a winner stories feed by paginating through get_winners_gallery entries with state, amount, and image.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does powerball.com have an official developer API?+
Powerball does not publish an official public developer API. This Parse API provides structured access to drawing results, jackpot data, prize odds, and winner information from powerball.com.
What does `get_draw_result_by_date` return, and how do I query a non-Powerball game?+
It returns the same response shape as the latest-drawing endpoint: winning_numbers (with white_balls and special_ball), multiplier, estimated_jackpot, cash_value, and a winners_breakdown array. Pass a game_code value — such as lotto-america, 2by2, double-play, or jackpot-usa — alongside a date in YYYY-MM-DD format to retrieve results for that specific game and drawing date.
Does `get_previous_results` use the same date format as `get_draw_result_by_date`?+
get_previous_results expects dates in MM/DD/YYYY format for both start_date and end_date, while get_draw_result_by_date uses YYYY-MM-DD. Mixing these formats will produce incorrect results, so verify the format before calling each endpoint.
Does the API expose individual ticket validation or lottery retailer locations?+
Not currently. The API covers drawing results, jackpot amounts, prize odds, and winner stories. You can fork it on Parse and revise to add an endpoint targeting retailer or ticket-check data if that surface becomes available.
How many pages does `get_winners_gallery` cover, and is there a total count field?+
The endpoint returns the current page number and a winners array, but does not include a total page count or total winner count in the response. To determine the full extent of available pages, you would need to increment the page parameter until the returned winners array is empty or shorter than a full page. You can fork the API on Parse and revise it to add a total-count field if the source exposes that data.
Page content last updated . Spec covers 7 endpoints from powerball.com.
Related APIs in OtherSee all →
duden.de API
Get German verb conjugations, parts of speech, and usage frequency from Duden's comprehensive database. Quickly look up how to conjugate any German verb across all tenses and moods.
git-scm.com API
Access comprehensive Git documentation, browse command references across different versions, and explore chapters from the Pro Git book. Search Git documentation and glossary terms to quickly find answers about Git commands and concepts.
theresanaiforthat.com API
Search and discover AI tools across different tasks, get detailed information about specific tools, browse available deals, and stay updated on the latest tools. Find the perfect AI solution for your needs by filtering by task category or checking featured and trending tools.
identify.plantnet.org API
Identify and explore plant species by searching through Pl@ntNet's comprehensive botanical database to access detailed information like taxonomic families, genera, species descriptions, photos, and community observations. Track plant distributions, view contribution trends, and discover expert contributors within the platform's collaborative plant identification community.
lotteryusa.com API
Check the latest winning numbers and jackpot amounts across all US lotteries, and view detailed prize breakdowns by state and game. Stay updated on lottery results instantly without visiting multiple lottery websites.
indiankanoon.org API
indiankanoon.org API
shamela.ws API
Search and browse one of the largest collections of Arabic and Islamic books, exploring thousands of titles by category, author, or full-text content. Access detailed book information, read specific pages, and discover newly added works to build your digital Islamic library.
oeis.org API
Search OEIS for integer sequences by keyword, A-number, or known terms, then retrieve full sequence entries and b-file term data.
Powerball.com API – Lottery Results & Jackpot Data · Parse