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

Search balance

GET
/api/v1/balance/{id}
Patch Notes
Maintainer:Alastor
Retrieves the details of a specific balance by its ID, including title, date, preview, full content, and associated image.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://marvelrivalsapi.com/api/v1/balance/' \
--header 'x-api-key;'
Response Response Example
200 - Example 1
{
    "id": "20230201",
    "title": "Version 20230201: New Features and Fixes",
    "date": "2023-02-01",
    "overview": "This update includes new features and several bug fixes.",
    "fullContent": "<h2>New Features</h2><p>Several new features have been added...</p>",
    "imagePath": "/patches/patch-20230201-image.jpg"
}

Request

Path Params
id
string 
required
The unique ID of the balance.
Example:
20230201
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
Successfully retrieved the balance.
Body
id
string 
optional
The unique ID of the balance.
Example:
20230201
title
string 
optional
The title of the balance.
Example:
Version 20230201: New Features and Fixes
date
string 
optional
The date of the balance release.
Example:
2023-02-01
overview
string 
optional
A brief overview of the balance.
Example:
This update includes new features and several bug fixes.
fullContent
string 
optional
The full content of the balance.
Example:
<h2>New Features</h2><p>Several new features have been added...</p>
imagePath
string 
optional
The file path to the image associated with the balance.
Example:
/patches/patch-20230201-image.jpg
🟠404Record Not Found
🔴500Server Error
Modified at 2025-07-23 14:35:31
Previous
List balances
Next
List dev diaries
Built with