1weuuy API1weuuy.life ↗
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.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/897714fb-6dbf-4354-ae5a-330006601741/get_crash_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 1weuuy-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 VIP SDK — bounded, re-runnable; every call capped."""
from parse_apis.api_1weuuy_life_api import LuckyJet, ParseError
client = LuckyJet()
# Fetch recent crash history for coefficient analysis
for round in client.rounds.list(limit=3):
print(round.id, round.coefficient, round.hash[:16])
# Get current live game state
try:
state = client.game_states.current()
print(state.current_state, state.current_coefficient, state.bet_count)
except ParseError as e:
print(f"error: {e.code}")
print("exercised: rounds.list, game_states.current")
Returns the 20 most recent completed crash rounds with their final coefficients and provably fair verification data (SHA-512 hash + salt). Each round's coefficient is the multiplier at which the jet crashed. Results are ordered from most recent to oldest.
No input parameters required.
{
"type": "object",
"fields": {
"count": "number of rounds returned",
"rounds": "array of crash round objects with id, coefficient, hash, and salt"
},
"sample": {
"data": {
"count": 20,
"rounds": [
{
"id": "f7bc38fb-0af8-4ee9-ad04-a82f5159fbd1",
"hash": "92a67e51881020f71109e70c2e53f97391f688cf2b9a868c814e5efcd2e4722d3af0f52dc392aa1a7875cfd05112864b04f87440e2e7c5da406b93e45e97d4ec",
"salt": "f7e11a7b72c2c79c63574dcb35be7c56",
"coefficient": 2.13
},
{
"id": "708b29fe-db25-407f-b61f-f18bf1773f33",
"hash": "764d673d0b67f8edd49a42fc84bdbbd612d9e4141835be363f4070b8c47a02e38f69c21868043f4582695104f5c971eff55e2eb7632ec6c7c424847f13a2ff5d",
"salt": "d2466b2d2f16721969e35b37b02733f1",
"coefficient": 1.45
}
]
},
"status": "success"
}
}About the 1weuuy API
The 1weuuy API on Parse exposes 2 endpoints for the publicly available data on 1weuuy.life. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.