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.

This API takes change requests — .
Endpoint health
verified 2d ago
get_current_round
get_top_coefficients
get_rounds_history
3/3 passing latest checkself-healing
Endpoints
3
Verified account required
Updated
1mo 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.

This call costs2 credits / call— charged only on success
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
2d 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/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. 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 →
1weuuy.life API
Predict Lucky Jet VIP crash game outcomes by accessing historical crash coefficients and real-time game state data. Track past multiplier patterns and monitor live gameplay to inform your betting decisions on the 1win platform.
1wlucb.life API
Access the complete history of Lucky Jet crash game rounds from 1win, viewing multiplier coefficients and verifying the fairness of each outcome. Track past game results and validate game integrity using provably fair verification data for informed gameplay analysis.
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.
betao.bet.br API
Track live casino game performance and multiplier wins from Betão's Brazilian platform to analyze top payouts and identify the biggest winning moments. Monitor real-time betting data to stay informed on the latest game results and multiplier records.
1xbet.fi API
Access real-time updates on live sporting events and instantly view current match status and betting odds from 1xBet to make informed wagering decisions. Get live event data as it happens so you can monitor games and track odds movements throughout competition.
blaze.bet.br API
Access the latest Blaze Double game outcomes instantly, including winning colors, roll numbers, and provably fair server seeds to track results and verify game integrity. Stay updated with real-time roulette game data to analyze patterns and validate fairness across rounds.
1xbet.ng API
Access live sports odds and real-time game data across all supported sports from 1xBet Nigeria, letting you monitor current betting markets and available sports instantly. Build applications that track market odds and sports availability as they update in real-time.
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.