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 dev diaries

GET
/api/v1/dev-diaries
Patch Notes
Maintainer:Alastor
Retrieves all available dev diaries 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/dev-diaries?page&limit' \
--header 'x-api-key;'
Response Response Example
{
    "total_entries": 50,
    "formatted_entries": [
        {
            "id": "20250214",
            "title": "Marvel Rivals Dev Diary - February 2025",
            "date": "2025-02-14",
            "overview": "This update includes new insights and upcoming features.",
            "imagePath": "/images/dev-diaries/dev_20250214.jpg",
            "fullContent": "Details of the development process."
        }
    ]
}

Request

Query Params
page
integer 
optional
The page number to fetch (defaults to 1).
Example:
1
limit
integer 
optional
The number of dev diaries 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 dev diaries with optional pagination.
Body
total_entries
integer 
optional
The total number of dev diaries available.
Example:
50
formatted_entries
array [object {6}] 
optional
The list of dev diaries.
id
string 
optional
The unique ID of the dev diary.
Example:
20250214
title
string 
optional
The title of the dev diary.
Example:
Marvel Rivals Dev Diary - February 2025
date
string 
optional
The date the dev diary was published.
Example:
2025-02-14
overview
string 
optional
A brief preview text from the dev diary.
Example:
This update includes new insights and upcoming features.
imagePath
string 
optional
The file path to the image associated with the dev diary.
Example:
/images/dev-diaries/dev_20250214.jpg
fullContent
string 
optional
The full content of the dev diary.
Example:
Details of the development process.
🟠400Bad Request
🟠404Record Not Found
🔴500Server Error
Modified at 2025-07-23 14:35:31
Previous
Search balance
Next
Search dev diary
Built with