Discover/1wlucb API
live

1wlucb API1wlucb.life

Retrieve the 20 most recent Lucky Jet crash game rounds from 1win, including multiplier coefficients and provably fair hash/salt data for each outcome.

This API takes change requests — .
Endpoint health
verified 2h ago
get_round_history
1/1 passing latest checkself-healing
Endpoints
1
Verified account required
Updated
3h ago

What is the 1wlucb API?

The Lucky Jet 1win API exposes 1 endpoint — get_round_history — that returns the 20 most recent completed rounds from the Lucky Jet crash game. Each response includes the round ID, crash multiplier coefficient, and provably fair hash and salt fields, giving developers direct access to recent game history and the data needed to verify outcome integrity independently.

This call costs2 credits / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/2b7d091d-f8a1-483b-b734-63b3d8a81e53/<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/2b7d091d-f8a1-483b-b734-63b3d8a81e53/get_round_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 1wlucb-life-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 round history — fetch recent crash rounds with provably fair data."""
from parse_apis.api_1wlucb_life_api import LuckyJet, ParseError

client = LuckyJet()

# Retrieve the most recent rounds, capped at 10 items
try:
    for round in client.rounds.list(limit=10):
        print(f"Round {round.id}: {round.coefficient}x")
except ParseError as e:
    # Game server may rotate sessions; surface the structured error code
    print(f"Parse failure [{e.code}]: {e}")

# Grab the first round for detailed provably-fair verification info
top_round = client.rounds.list(limit=1).first()
if top_round is not None:
    print(f"Verifying round {top_round.id}")
    print(f"  Coefficient: {top_round.coefficient}x")
    print(f"  Hash: {top_round.hash}")
    print(f"  Salt: {top_round.salt}")

print("exercised: rounds.list")
All endpoints · 1 totalmissing one? ·

Returns the 20 most recent completed Lucky Jet rounds. Each round includes its crash multiplier coefficient and provably fair hash/salt for verification. The endpoint establishes a demo game session internally to access the game server; no authentication is required from the caller.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "count": "integer, number of rounds returned",
    "rounds": "array of round objects, each containing id, coefficient, hash, and salt"
  },
  "sample": {
    "data": {
      "count": 20,
      "rounds": [
        {
          "id": "2d8efb5e-494d-4e5e-b188-e1acd83dd1fc",
          "hash": "REDACTED_SECRET",
          "salt": "REDACTED_SECRET",
          "coefficient": 9.59
        },
        {
          "id": "e15db390-dce4-4c1f-b264-f9bcc6def199",
          "hash": "REDACTED_SECRET",
          "salt": "REDACTED_SECRET",
          "coefficient": 1.53
        }
      ]
    },
    "status": "success"
  }
}

About the 1wlucb API

What the API Returns

The get_round_history endpoint returns a JSON object with a count integer confirming how many rounds are included and a rounds array. Each element in the array contains four fields: id (unique round identifier), coefficient (the crash multiplier at which that round ended), hash (the provably fair hash string), and salt (the salt value used in the fairness proof). No input parameters are required — calling the endpoint returns the latest 20 completed rounds immediately.

Provably Fair Verification

The hash and salt fields returned per round are the inputs needed to independently verify that each outcome was not manipulated after the fact. Developers building audit tools or statistical trackers can use these values to confirm that the coefficient for a given round is consistent with its declared hash and salt, following Lucky Jet's standard provably fair scheme.

Coverage and Freshness

The endpoint always reflects the 20 most recently completed rounds at the time of the request. There is no pagination and no filtering by date range or coefficient threshold. Because Lucky Jet rounds complete quickly, repeated polling can be used to build a local time-series of results. The data covers the Lucky Jet game variant hosted on the 1win platform specifically.

Reliability & maintenanceVerified

The 1wlucb API is a managed, monitored endpoint for 1wlucb.life — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when 1wlucb.life 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 1wlucb.life 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
2h ago
Latest check
1/1 endpoint 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
  • Build a coefficient history chart showing the last 20 Lucky Jet outcomes in real time
  • Automate provably fair audits by collecting hash and salt values and verifying them against published coefficients
  • Detect statistical streaks or dry spells in crash multipliers by polling get_round_history at regular intervals
  • Store a rolling dataset of coefficient values for distribution analysis across sessions
  • Cross-reference round id values with user bet records to reconcile game outcomes
  • Monitor average multiplier trends over time using repeated calls to the single 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 provide an official developer API for Lucky Jet game data?+
1win does not publish an official public developer API for Lucky Jet round history or game data. This Parse API provides structured access to that data.
What exactly does `get_round_history` return for each round?+
Each round object in the rounds array contains four fields: id (the round identifier), coefficient (the crash multiplier), hash (the provably fair hash), and salt (the salt for fairness verification). The top-level count field confirms the number of rounds returned, which is always 20.
Can I retrieve more than 20 rounds or filter by a minimum coefficient?+
The endpoint returns exactly the 20 most recent completed rounds with no filtering options for coefficient thresholds, date ranges, or result counts. You can fork this API on Parse and revise it to add pagination or filtering parameters.
Does the API cover other 1win crash games beyond Lucky Jet?+
Currently the API covers only the Lucky Jet game on 1win. Other crash games offered on the platform are not included. You can fork this API on Parse and revise it to add endpoints targeting other game variants.
How fresh is the data returned by `get_round_history`?+
Each call reflects the 20 rounds most recently completed at request time. Because Lucky Jet rounds resolve in seconds, results can become stale quickly. There is no built-in push or streaming mechanism; freshness depends on how frequently your application polls the endpoint.
Page content last updated . Spec covers 1 endpoint from 1wlucb.life.
Related APIs in EntertainmentSee all →
1win.com API
Track live crash game results and multipliers from Lucky Jet on 1win, viewing historical round outcomes, current active bets, and the leaderboard of highest multipliers achieved. Monitor real-time game data to analyze patterns and stay updated on top-performing rounds.
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.
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.
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.
1wyvev.life API
Access data from 1wyvev.life.
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.
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.
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.