Discover/Aviator AI API
live

Aviator AI APIaviatorai.shop

Access the 50 most recent crash-game round multipliers, catalog 19 supported games, and check platform version updates via the Aviator AI Shop API.

This API takes change requests — .
Endpoint health
verified 7d ago
list_games
check_updates
get_rounds
3/3 passing latest checkself-healing
Endpoints
3
Verified account required
Updated
1mo ago

What is the Aviator AI API?

The Aviator AI Shop API exposes 3 endpoints covering crash-style multiplier game data from aviatorai.shop. The get_rounds endpoint returns the 50 most recent completed rounds with their multiplier values and timestamps, ordered newest-first. The list_games endpoint catalogs all 19 supported prediction game models, including Aviator and Chicken Road, with slugs, descriptions, and icons. A third endpoint tracks platform version state.

This call costs1 credit / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/6f7f9331-8dc0-4218-8621-573fcc7b6b38/<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/6f7f9331-8dc0-4218-8621-573fcc7b6b38/get_rounds' \
  -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 aviatorai-shop-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: AviatorAI SDK — fetch prediction rounds, browse games, check updates."""
from parse_apis.aviatorai_shop_api import AviatorAI, ParseError

client = AviatorAI()

# List the latest prediction rounds (multiplier outcomes), capped at 5.
for round in client.rounds.list(limit=5):
    print(f"Round {round.id}: {round.multiplier}x at {round.created_at}")

# Browse available prediction game models.
game = client.games.list(limit=1).first()
if game:
    print(f"First game: {game.name} ({game.slug}) — {game.description}")

# Check platform version updates with error handling.
try:
    info = client.updates.check(current_version="1.0.0")
    print(f"Update available: {info.update_available}, latest: {info.latest_version}")
except ParseError as exc:
    print(f"Update check failed: {exc}")

print("exercised: rounds.list / games.list / updates.check")
All endpoints · 3 totalmissing one? ·

Retrieve the 50 most recent prediction rounds with multiplier outcomes. Each round represents a completed game result with its crash multiplier and timestamp. Results are ordered newest-first and refresh in near real-time as new rounds complete.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "count": "integer",
    "rounds": "array of round objects with id, multiplier, created_at"
  },
  "sample": {
    "data": {
      "count": 50,
      "rounds": [
        {
          "id": 651606,
          "created_at": "2026-07-10T03:24:44.726161",
          "multiplier": 2.95
        },
        {
          "id": 651599,
          "created_at": "2026-07-10T03:24:25.230801",
          "multiplier": 1.38
        }
      ]
    },
    "status": "success"
  }
}

About the Aviator AI API

Round Data

The get_rounds endpoint returns a count integer and a rounds array. Each round object contains an id, a multiplier (the crash value at which that game round ended), and a created_at timestamp. The response always covers the 50 most recent rounds, ordered newest-first, and refreshes in near real-time as new rounds complete. There are no filter parameters — each call returns the latest available window.

Game Catalog

list_games returns a count integer alongside a games array of all 19 supported prediction game models. Each game object includes an id, human-readable name, URL-safe slug, description, and icon reference. The catalog is static and reflects the platform's current offerings across crash-style titles. This endpoint is useful for building game-selection UIs or mapping slugs to display names before querying round data.

Platform Version Checks

The check_updates endpoint accepts an optional current_version string in semantic version format (e.g. 1.0.0). It returns latest_version, an update_available boolean, release_notes text, an is_mandatory boolean indicating whether the update must be applied, and a created_at timestamp for the release. Omitting current_version will still return the latest version details.

Reliability & maintenanceVerified

The Aviator AI API is a managed, monitored endpoint for aviatorai.shop — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when aviatorai.shop 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 aviatorai.shop 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
7d 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
  • Plot the distribution of crash multipliers across the 50 most recent Aviator rounds to identify outcome frequency bands.
  • Build a game-selection dropdown populated from the list_games catalog of 19 titles with names and icons.
  • Detect when a mandatory platform update is released by polling check_updates and checking is_mandatory.
  • Log timestamped round multipliers from get_rounds to a time-series database for historical trend analysis.
  • Map game slug values from list_games to display metadata when building a multi-game dashboard.
  • Alert users when update_available is true and surface the release_notes returned by check_updates.
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 aviatorai.shop have an official developer API?+
No public developer API is documented on aviatorai.shop. The Parse API provides structured access to the platform's round and game data.
What does `get_rounds` return and can I filter by game type?+
It returns the 50 most recent completed rounds, each with an id, multiplier, and created_at timestamp. There are no filter parameters in the current endpoint — all 50 results are returned without game-type filtering. The list_games endpoint separately catalogs the 19 supported games, but round results are not segmented by game in the current response shape. You can fork this API on Parse and revise it to add a game filter parameter.
Does the API expose more than 50 rounds of history?+
Not currently. The get_rounds endpoint is fixed at the 50 most recent rounds with no pagination or date-range parameters. If you need deeper history, you can fork the API on Parse and revise it to add offset-based pagination or a date filter.
Can I retrieve per-game round data separately for each of the 19 titles?+
Not currently. The get_rounds endpoint returns a single pool of the 50 most recent rounds without distinguishing which game each round belongs to. You can fork the API on Parse and revise it to add a game_slug parameter that scopes results to a specific title.
What does `check_updates` return when no `current_version` is provided?+
It still returns latest_version, release_notes, is_mandatory, update_available, and created_at. Without a current_version to compare against, update_available may default to true or reflect the platform's latest release state.
Page content last updated . Spec covers 3 endpoints from aviatorai.shop.
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.
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.
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.
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.
1wyvev.life API
Access data from 1wyvev.life.
pred.gg API
Access all gaming assets from the Pred.gg platform including hero icons, ability icons, skin portraits, item icons, perk icons, and rank icons. Use these images to build gaming apps, guides, or community tools with official Pred.gg graphics.
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.
poki.com API
Discover and browse thousands of free online games with detailed information about genres, popularity, and platform compatibility. Find new games by exploring categories or searching through Poki's complete game catalog to access metadata and recommendations.