MarvelRivalsAPI.com
  1. Battle Pass
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
      • Search balance
      • List dev diaries
      • Search dev diary
      • List patch notes
      • Search patch note
      • List game versions
    • Battle Pass
      • Battlepass
        GET
    • 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. Battle Pass

Battlepass

GET
/api/v1/battlepass
Battle Pass
Maintainer:Alastor
This endpoint retrieves the battlepass data for a given season, including season details and the list of items available for the selected season.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://marvelrivalsapi.com/api/v1/battlepass?season' \
--header 'x-api-key;'
Response Response Example
{
    "season": 1,
    "season_name": "Rivals Season 1",
    "items": [
        {
            "name": "All-Butcher",
            "image": "/battlepass/1/all-butcher.jpg",
            "cost": "Unlock To Claim",
            "isLuxury": true
        }
    ]
}

Request

Query Params
season
integer 
optional
The season number to fetch the battlepass data for. Defaults to season 1 if not provided.
Example:
1
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
Successful response with battlepass data
Body
season
integer 
optional
The season number for the battlepass.
Example:
1
season_name
string 
optional
The name of the season.
Example:
Rivals Season 1
items
array [object {4}] 
optional
List of items available in the battlepass for the selected season.
name
string 
optional
The name of the item.
Example:
All-Butcher
image
string 
optional
The image URL for the item.
Example:
/battlepass/1/all-butcher.jpg
cost
string 
optional
The cost or unlock status of the item.
Example:
Unlock To Claim
isLuxury
boolean 
optional
Whether the item is considered a luxury item.
Example:
true
🟠400Bad Request
🟠401Unauthorized
🟠404Record Not Found
🔴500Server Error
Modified at 2025-07-23 14:35:31
Previous
List game versions
Next
List Heroes
Built with