1win API1win.com ↗
Access live Lucky Jet round results, current bet data, and top multiplier leaderboards from 1win via a simple JSON API.
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.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/dfcd37a4-42ee-4914-824f-2651f659871d/get_rounds_history' \ -H 'X-API-Key: $PARSE_API_KEY'
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")
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.
No input parameters required.
{
"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.
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.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Track crash multiplier distributions over time using
top_coefficientvalues from round history. - Build a provably fair audit tool using the
hashandsaltfields returned per round. - Display a live bet feed showing
user_id,size_usd, andoutcomefor the current round. - Monitor extreme multiplier events by polling
get_top_coefficientswith a short interval. - Analyze bet size patterns across currencies using
sizeandcurrencyfields from active bets. - Compare
total_bet_countagainst the 50-bet cap to gauge round activity volume. - Build a round-by-round timeline using
start_timeandtop_coefficientfrom the leaderboard endpoint.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 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.
Does 1win have an official developer API for Lucky Jet data?+
What does get_current_round return for bets, and is there a limit?+
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?+
Does the API cover other crash or casino games on 1win beyond Lucky Jet?+
What does the interval parameter in get_top_coefficients accept?+
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.