MarvelRivalsAPI.com
Swagger DocsDiscord
  • Introduction
    • Documentation Overview
  • Errors
  • Rate Limits
  • Endpoints
    • Achievements
      • All Achievements
      • Achievement
    • Battlepass
    • Heroes
      • All Heroes
      • Hero
      • Hero Stats
      • Hero Leaderboard
      • Costumes
        • All Costumes
        • Costume
    • Items
      • All Items
      • Item
    • Maps
      • All Maps
    • Patch Notes
      • All Balances
        • Balance
      • All Dev Diaries
        • Dev Diray
      • All Patch Notes
        • Patch Note
      • Game Versions
      • Seasons
    • Player Stats
      • Find Player
      • Player
      • Update Player
    • Match Stats
      • Match History v1
      • Match
      • Match History v2
Powered by GitBook
On this page

Was this helpful?

  1. Endpoints
  2. Patch Notes
  3. All Patch Notes

Patch Note

GET https://marvelrivalsapi.com/api/v1/patch-note/:id

Retrieves the details of a specific patch note by its ID, including title, date, preview, full content, and associated image.

Headers

Name
Value

Content-Type

application/json

x-api-key*

YOUR API KEY

Query Parameters

Name
Type
Required
Description

id*

string

✔️

The id of the patch note you want to view

Example Requests

curl -X GET "https://marvelrivalsapi.com/api/v1/patch-note/20250214"
     -H "x-api-key: YOUR_API_KEY"
const axios = require("axios");

try {
    const response = await axios.get("https://marvelrivalsapi.com/api/v1/patch-note/20250214", {
        headers: {
            "x-api-key": "YOUR_API_KEY"
        }
    });
    console.log(response.data);
} catch (error) {
    console.error("Error fetching balances:", error.response ? error.response.data : error.message);
}
import requests

url = "https://marvelrivalsapi.com/api/v1/patch-note/20250214"
headers = {
    "x-api-key": "YOUR_API_KEY"
}

response = requests.get(url, headers=headers)

if response.status_code == 200:
    print(response.json())
else:
    print(f"Error {response.status_code}: {response.text}")
import java.net.http.*;
import java.net.URI;
import java.io.IOException;

public class ApiClient {
    public static void main(String[] args) {
        HttpClient client = HttpClient.newHttpClient();
        HttpRequest request = HttpRequest.newBuilder()
            .uri(URI.create("https://marvelrivalsapi.com/api/v1/patch-note/20250214"))
            .header("x-api-key", "YOUR_API_KEY")
            .GET()
            .build();

        try {
            HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
            System.out.println(response.body());
        } catch (IOException | InterruptedException e) {
            e.printStackTrace();
        }
    }
}

Response

{
    "id": "20250214",
    "title": "Marvel Rivals Version 20250214 Patch Notes",
    "date": "2025/02/13",
    "overview": "The second half of Season 1 is coming soon! Expect new heroes, a new map, and balance adjustments. Stay tuned for the latest updates from the official announcements!",
    "fullContent": "Greetings, Rivals!\n\nWe're thrilled to announce that the upcoming patch drops on February 13, 2025, at 09:00:00 (UTC+0)! This update will also be applied without server downtime—so you can dive right back into your epic battles as soon as the update is live!\n\n \n\nHere's a look at what's coming in this patch:\n\n\nALL-NEW COSTUMES\n\nMister Fantastic & Invisible Woman - 60th Wedding Anniversary Combo Bundle (Store release: 2025/02/14 02:00:00 UTC+0)\n\nMister Fantastic - The Life Fantastic (Store release: 2025/02/14 02:00:00 UTC+0)\n\nInvisible Woman - The Life Fantastic (Store release: 2025/02/14 02:00:00 UTC+0)\n\n \n\n\nBUG FIXES\n\n\nALL PLATFORMS\n\nGeneral\n\n1. High-end computers running the Bazzite (Linux) system were mistakenly tapping into low-quality UI resources. Fear not—this issue has been rm'd!\n\n \n\nMaps and Gameplay\n\n1. Resolved an issue where if you scored KOs during overtime and the battle concluded at that moment, the KDA tab might not have shown its true colors. Now every victory is honored!\n\n2. Corrected an issue where the Yggdrasill Path cart icon in the Convoy tutorial was a bit off-target. Your heroic journey can now continue with clarity!\n\n3. A heroic sweep has been performed to fix various map collisions that could trap players or allow them to slip through walls unexpectedly. Your path to glory is now cleared!\n\n \n\nHero Bug Fixes\n\n1. Doctor Strange's Portal Power: Fixed an issue where Doctor Strange's portal could be interrupted during the placement phase if an allied Loki transformed into him. The Sorcerer Supreme's magic now flows uninterrupted!\n\n2. Jeff the Land Shark's Bubble Trouble: Resolved a quirky situation where Jeff's bubbles could, in rare instances, sneak past enemy healing gates into the spawn room. No more bubble bath break-ins!\n\n3. Iron Man's \"Armless\" Attack: Addressed a tech malfunction where Iron Man's arm models could go missing after activating Armor Overdrive in certain rare scenarios. The suit's back in action—fully equipped to blast into battle!\n\n4. Hulk & Wolverine's Team-Up Trouble: Fixed a little mischief where because of their Team-Up Ability, Wolverine's Berserk Claw Strike could, under certain situations, be activated during Feral Leap. Now, there will be no more mix-ups!\n\n5. Hulk's Charge Hiccup: Resolved a Team-Up Ability bug where if Hulk was hit by Namor's ultimate when charging to throw Wolverine, he wouldn't be thrown afterward. Now, the power duo can deliver a one-two punch without any interruptions—Hulk smash, Wolverine slash!\n\n \n\n\nCONSOLE\n\n1. Fixed an issue where the PS controller could experience drift in certain specific situations.\n\n \n\nThe second half of Season 1 is coming soon! Expect new heroes, a new map, and balance adjustments. Stay tuned for the latest updates from the official announcements!\n\n \n\nFor more information about us, check out and follow our other social channels.\n\nDiscord [https://discord.gg/marvelrivals]|X [https://twitter.com/MarvelRivals]|Facebook [https://www.facebook.com/marvelrivals]|Instagram [https://www.instagram.com/marvelrivals/]|TikTok [https://www.tiktok.com/@marvelrivals]|YouTube [https://www.youtube.com/@MarvelRivals]|Twitch [https://www.twitch.tv/marvelrivals]\n\n ",
    "imagePath": "/patchNotes/patch_20250214.jpg"
}
{
  "error": true,
  "message": "Invalid pagination parameters.",
  "status": 400
}
{
  "error": true,
  "message": "Invalid or missing API key.",
  "status": 401
}
{
  "error": true,
  "message": "No Dev Diary found",
  "status": 404
}
{
  "error": true,
  "message": "An error occurred while fetching data.",
  "status": 500
}

Response Field Descriptions

Field
Type
Description

id

String

Unique identifier for the patch, typically based on the date (e.g., "20250214").

title

String

Title of the patch notes (e.g., "Marvel Rivals Version 20250214 Patch Notes").

date

String

Date the patch was released, formatted as YYYY/MM/DD (e.g., "2025/02/13").

overview

String

Short summary of the patch, usually a teaser for what's included (e.g., costumes, map, fixes).

fullContent

String

Full detailed content of the patch, including costume info, fixes, and developer notes.

imagePath

String

Path or URL to the patch image or banner (e.g., "/patchNotes/patch_20250214.jpg").

PreviousAll Patch NotesNextGame Versions

Last updated 2 months ago

Was this helpful?