Rone Arena v1.0.2
Blog GitHub Stars

Web Playground

Addon Endpoint

Interactive request form for this API endpoint.

Each card below maps directly to an API endpoint. Query, path, and request body fields are generated from OpenAPI.

API Base

Every request from this playground goes to a single API base.

Active base: https://arena.rone.dev/api

GET Win Rate Calculator for Consecutive Wins

/web/addon/win-rate-calculator

Open Only This

Calculate the number of consecutive wins required to reach a target win rate based on current matches and current win rate.

Query parameters:

  • match-now: Current total number of matches played (minimum: 0).
  • wr-now: Current win rate in percent (range: 0-100).
  • wr-future: Target win rate in percent. Must be greater than current win rate and between 0-100.

The response includes win rate calculation data:

  • status: Response status (e.g., 'success').
  • match_now: Current total matches played.
  • wr_now: Current win rate.
  • wr_future: Target win rate.
  • required_no_lose_matches: Number of consecutive wins required without losses to reach the target win rate.
  • message: Explanation message summarizing the result.

This endpoint is useful for:

  • Calculating how many consecutive wins are needed to reach a desired win rate.
  • Helping players set realistic performance goals.
  • Providing analytics for win rate progression.
Current Matches Played* match-now
query

Current total number of matches played. Must be a non-negative integer. Min: 0.

Current Win Rate* wr-now
query

Current win rate in percent. Must be a value between 0 and 100. Min: 0. Maximum: 100.

Target Win Rate* wr-future
query

Target win rate in percent. Must be greater than the current win rate and between 0 and 100. Maximum: 100.

GET /api/addon/win-rate-calculator