Discover/1win API
live

1win API1win.com

Access live Lucky Jet round results, current bet data, and top multiplier leaderboards from 1win via a simple JSON API.

Endpoint health
verified 3h ago
get_rounds_history
get_current_round
get_top_coefficients
3/3 passing latest checkself-healing
Endpoints
3
Updated
4h ago

What is the 1win API?

The 1win Lucky Jet API provides 3 endpoints covering live crash game round data from the Lucky Jet game on 1win.com. The get_rounds_history endpoint returns the most recent ~20 rounds with crash multipliers, provably fair hash and salt values, and round IDs. The get_current_round endpoint exposes active bet details including bet size, currency, and USD equivalent. The get_top_coefficients endpoint surfaces the highest multipliers recorded over a configurable time interval.

Try it

No input parameters required.

api.parse.bot/scraper/dfcd37a4-42ee-4914-824f-2651f659871d/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/dfcd37a4-42ee-4914-824f-2651f659871d/get_rounds_history' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace 1win-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Lucky Jet SDK — live crash game results, bounded and re-runnable."""
from parse_apis.api_1win_com_api import LuckyJet, Interval, ParseError

client = LuckyJet()

# Fetch the most recent game rounds (crash multipliers).
for round in client.rounds.list(limit=5):
    print(round.top_coefficient, round.round_id, round.hash)

# Get the current/last round and inspect active bets.
for bet in client.current_rounds.get(limit=3):
    print(bet.bet_id, bet.currency, bet.size_usd)

# Leaderboard: highest multipliers today, using the Interval enum.
try:
    for top_round in client.leaderboards.list(interval=Interval.DAY, limit=5):
        print(top_round.top_coefficient, top_round.start_time)
except ParseError as exc:
    print(f"leaderboard unavailable: {exc}")

print("exercised: rounds.list / current_rounds.get / leaderboards.list")
All endpoints · 3 totalmissing one? ·

Returns the most recent Lucky Jet game rounds (approximately 20). Each round includes the crash multiplier (topCoefficient), provably fair hash and salt for verification, and a unique round ID. Results are ordered from most recent to oldest.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "count": "integer",
    "rounds": "array of round objects with round_id, top_coefficient, final_values, outcome, hash, salt"
  },
  "sample": {
    "data": {
      "count": 20,
      "rounds": [
        {
          "hash": "REDACTED_SECRET",
          "salt": "REDACTED_SECRET",
          "outcome": 0,
          "round_id": "b41efbe4-6f3c-49e3-938b-28970e8462a0",
          "final_values": [
            1.17
          ],
          "top_coefficient": 1.17
        }
      ]
    },
    "status": "success"
  }
}

About the 1win API

Round History and Provably Fair Verification

The get_rounds_history endpoint returns up to approximately 20 of the most recent Lucky Jet rounds, ordered from newest to oldest. Each round object includes a round_id, top_coefficient (the crash multiplier at which the round ended), final_values, outcome, and the hash and salt fields used for provably fair verification. These two fields allow independent verification of each round's outcome against the published algorithm.

Current Round and Active Bets

The get_current_round endpoint returns both the round metadata and up to 50 individual bets placed in the current or most recently completed round. Each bet object includes bet_id, user_id, size, size_usd, currency, coefficient, outcome, and winnings_size. The size_usd field normalizes bet amounts across currencies, making cross-currency comparison straightforward. The total_bet_count field indicates total bets in the round, even if only 50 are returned.

Top Multiplier Leaderboard

The get_top_coefficients endpoint returns the top 20 highest crash multipliers from Lucky Jet rounds within a time window specified by the optional interval string parameter. Each result includes round_id, top_coefficient, final_values, start_time, hash, and salt. The interval field in the response confirms which time range the leaderboard covers. Results are sorted descending by multiplier.

Reliability & maintenanceVerified

The 1win API is a managed, monitored endpoint for 1win.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when 1win.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official 1win.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3h ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track crash multiplier distributions over time using top_coefficient values from round history.
  • Build a provably fair audit tool using the hash and salt fields returned per round.
  • Display a live bet feed showing user_id, size_usd, and outcome for the current round.
  • Monitor extreme multiplier events by polling get_top_coefficients with a short interval.
  • Analyze bet size patterns across currencies using size and currency fields from active bets.
  • Compare total_bet_count against the 50-bet cap to gauge round activity volume.
  • Build a round-by-round timeline using start_time and top_coefficient from the leaderboard endpoint.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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 1win have an official developer API for Lucky Jet data?+
1win does not publish a public developer API for Lucky Jet game data or round results.
What does get_current_round return for bets, and is there a limit?+
It returns up to 50 individual bet objects per round, each with fields including bet_id, user_id, size, size_usd, currency, coefficient, outcome, and winnings_size. The total_bet_count field tells you the full count of bets in the round even when it exceeds 50, but only 50 bet records are included in the response.
How many rounds does get_rounds_history return, and is there pagination?+
The endpoint returns approximately 20 of the most recent rounds. There is no pagination parameter — you cannot request older rounds or a specific page. The API covers the most recent history window only. You can fork it on Parse and revise to add deeper historical pagination if your use case requires it.
Does the API cover other crash or casino games on 1win beyond Lucky Jet?+
Not currently. All three endpoints are scoped exclusively to Lucky Jet round data. Other 1win casino games are not covered. You can fork this API on Parse and revise it to add endpoints targeting other games.
What does the interval parameter in get_top_coefficients accept?+
The interval parameter is an optional string that sets the time window for the top-20 multiplier leaderboard. The accepted format values are not enumerated in the schema, so you should test with common time strings (e.g. "day", "week", "month"). The response includes an interval field confirming which window was applied.
Page content last updated . Spec covers 3 endpoints from 1win.com.
Related APIs in EntertainmentSee all →
aviatorai.shop API
Retrieve historical round data and game information from crash-style multiplier games like Aviator and Chicken Road to analyze prediction patterns and platform updates. Monitor game performance metrics and stay informed about the latest platform changes across supported titles.
zq.titan007.com API
Track live football scores and match results across multiple leagues, while accessing detailed odds from various bookmakers including 1x2, Asian handicap, and over/under betting lines. Get comprehensive match information and browse competitions to stay updated on games and betting opportunities.
oddsportal.com API
Track sports betting odds, matches, and results across multiple sports and leagues in real-time, while viewing team standings and match details to stay informed on upcoming games. Access comprehensive betting data and historical results from OddsPortal to compare odds and analyze sports outcomes.
csgoroll.com API
Access real-time CS:GO marketplace listings and stats, browse available cases with detailed information, check leaderboards and case battle results, and view the latest game drops and exchange rates. Track pricing data, compare case odds, and monitor top player rankings all from one unified source.
pinnacle.com API
Access real-time and pre-event sports betting odds, matchups, and markets from Pinnacle. Retrieve data across all available sports and leagues, monitor live events with scores and live odds, and explore political and entertainment betting markets. Covers full market depth including spreads, totals, moneylines, props, and alternate lines.
unibet.com API
Access live betting odds, browse sports categories and upcoming matches, and search for specific events across multiple leagues in real-time. Get detailed event information including current odds for thousands of sports matchups to inform your betting decisions.
asianbetsoccer.com API
Track live soccer match scores and upcoming games while monitoring Asian handicap odds from multiple bookmakers to get instant alerts when betting lines match your criteria. Access real-time odds across all available leagues and bookmakers in one place.
oddspedia.com API
Find profitable betting opportunities and compare real-time odds across dozens of bookmakers to identify sure bets, value bets, and dropping odds for various sports. Filter matches by sport, league, and region to make informed betting decisions with comprehensive odds comparisons and match information.