v5

latestOpenAPI 3.0.02026-08-0437328230.2 KB
mythic_plus

Retrieve the colors used for score tiers in the given season.

get/api/v1/mythic-plus/score-tiers

Query parameters

access_keystring

The API key from your RaiderIO App: http://raider.io/settings/apps. Apps with API keys have higher rate limits.

The API key from your RaiderIO App: http://raider.io/settings/apps. Apps with API keys have higher rate limits.

seasonstring

Name of the season to retrieve (season-mn-1, etc.). Defaults to current season.

Name of the season to retrieve (season-mn-1, etc.). Defaults to current season.

Response

Score tiers sorted from highest to lowest score

scorenumber required

Minimum score for this color tier

rgbHexstring required

Hex color code for this tier

rgbDecimalinteger required

Decimal representation of the color

rgbFloatnumber[] required

RGB color as float values [0-1]

rgbIntegerinteger[] required

RGB color as integer values [0-255]

Example response

[
  {
    "score": 3400,
    "rgbHex": "#ff8000",
    "rgbDecimal": 16744448,
    "rgbFloat": [
      1,
      0.5,
      0
    ],
    "rgbInteger": [
      255,
      128,
      0
    ]
  }
]