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 patch notes

GET
/api/v1/patch-notes
Patch Notes
Maintainer:Alastor
Retrieves all available patch notes with optional pagination to control the number of results per page.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://marvelrivalsapi.com/api/v1/patch-notes?page&limit' \
--header 'x-api-key;'
Response Response Example
200 - Example 1
{
    "total_patches": 50,
    "formatted_patches": [
        {
            "patchTitle": "Marvel Rivals Version 20250214 Patch Notes",
            "patchDate": "2025-02-14",
            "patchType": "Patch Notes",
            "previewText": "This update includes new features and bug fixes.",
            "imagePath": "/images/patches/patch_20250214_1.jpg",
            "fullContent": "Details of the patch note.",
            "htmlContent": "<p>Details in HTML format.</p>"
        }
    ]
}

Request

Query Params
page
integer 
optional
The page number to fetch (defaults to 1).
Example:
1
limit
integer 
optional
The number of patch notes to return per page (defaults to 10).
Example:
10
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 patch notes with optional pagination.
Body
total_patches
integer 
optional
The total number of patch notes available.
Example:
50
formatted_patches
array [object {7}] 
optional
The list of patch notes.
patchTitle
string 
optional
The title of the patch note.
Example:
Marvel Rivals Version 20250214 Patch Notes
patchDate
string 
optional
The date the patch note was published.
Example:
2025-02-14
patchType
string 
optional
The type of the patch note.
Example:
Patch Notes
previewText
string 
optional
A brief preview text from the patch note.
Example:
This update includes new features and bug fixes.
imagePath
string 
optional
The file path to the image associated with the patch note.
Example:
/images/patches/patch_20250214_1.jpg
fullContent
string 
optional
The full content of the patch note in plain text.
Example:
Details of the patch note.
htmlContent
string 
optional
The full content of the patch note in HTML format.
Example:
<p>Details in HTML format.</p>
🟠400Bad Request
🟠404Record Not Found
🔴500Server Error
Modified at 2025-07-23 14:35:31
Previous
Search dev diary
Next
Search patch note
Built with