MarvelRivalsAPI.com
  1. Patch Notes
MarvelRivalsAPI.com
  • Introduction
  • Get Started
    • Authentication
    • Rate Limits
    • Errors
      • Status Codes
    • SDKs & Extentions
      • Community Libraries
  • Endpoints
    • Achievements
      • List achievements
      • Search achievement
    • Patch Notes
      • List balances
        GET
      • Search balance
        GET
      • List dev diaries
        GET
      • Search dev diary
        GET
      • List patch notes
        GET
      • Search patch note
        GET
      • List game versions
        GET
    • Battle Pass
      • Battlepass
    • Heroes
      • List Heroes
      • Search hero
      • Hero stats
      • Hero leaderboard
      • List costumes
      • Search hero costume
    • Items
      • List items
      • Search item
    • Maps
      • List maps
      • Search map
    • Player Match History
      • Search match
      • Player match history
      • Player match history v2
    • Player Stats
      • Search player
      • Player stats
      • Player stats v2
      • Update player
      • Player Leaderboard
  1. Patch Notes

List game versions

GET
/api/v1/game-versions
Patch Notes
Maintainer:Alastor
Retrieves all available game versions with optional pagination and the option to filter for the current version, including corresponding patch notes for each version.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://marvelrivalsapi.com/api/v1/game-versions?page&limit&current' \
--header 'x-api-key;'
Response Response Example
200 - Example 1
{
    "total_versions": 8,
    "formatted_versions": [
        {
            "version": 20241210,
            "release": "Dec 10, 2024",
            "patchNotesUrl": "/api/v1/patch-notes/20241210"
        }
    ]
}

Request

Query Params
page
integer 
optional
The page number to fetch (defaults to 1).
Example:
1
limit
integer 
optional
The number of game versions to return per page (defaults to 10).
Example:
10
current
boolean 
optional
If true, only returns the current (most recent) version.
Example:
true
Header Params
x-api-key
string 
required
The API key for authorization. It is necessary to provide a valid API key to access the data.
Example:
your-api-key-here

Responses

🟢200OK
application/json
A list of game versions with optional pagination, including corresponding patch notes.
Body
total_versions
integer 
optional
The total number of game versions available.
Example:
8
formatted_versions
array [object {3}] 
optional
The list of game versions.
version
integer 
optional
The version number.
Example:
20241210
release
string 
optional
The release date of the version.
Example:
Dec 10, 2024
patchNotesUrl
string 
optional
The URL to the patch notes for this version.
Example:
/api/v1/patch-notes/20241210
🟠400Bad Request
🟠404Record Not Found
🔴500Server Error
Modified at 2025-07-23 14:35:31
Previous
Search patch note
Next
Battlepass
Built with