MarvelRivalsAPI.com
  1. Achievements
MarvelRivalsAPI.com
  • Introduction
  • Get Started
    • Authentication
    • Rate Limits
    • Errors
      • Status Codes
    • SDKs & Extentions
      • Community Libraries
  • Endpoints
    • Achievements
      • List achievements
        GET
      • Search achievement
        GET
    • Patch Notes
      • List balances
      • Search balance
      • List dev diaries
      • Search dev diary
      • List patch notes
      • Search patch note
      • List game versions
    • 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. Achievements

List achievements

GET
/api/v1/achievements
AchievementsList AchievementsAll Achievements
Maintainer:Alastor
List all current achievements obtainible in Marvel Rivals
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://marvelrivalsapi.com/api/v1/achievements?filter&page&limit' \
--header 'x-api-key;'
Response Response Example
200 - Example 1
{
    "total_achievements": 100,
    "achievements": [
        {
            "id": "30000001",
            "name": "Rivals",
            "category": "Combat",
            "points": 50,
            "icon": "achievements/rivals-30000001-icon.webp"
        }
    ]
}

Request

Query Params
filter
string 
optional
Filter achievements by category.
Example:
Galacta's Guide
page
integer 
optional
The page number to fetch (defaults to 1).
Example:
1
limit
integer 
optional
The number of achievements 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 achievements with applied filters and pagination.
Body
total_achievements
integer 
optional
The total number of achievements available that match the filter.
Example:
100
achievements
array [object {5}] 
optional
The list of achievements matching the filter and pagination criteria.
id
string 
optional
Example:
30000001
name
string 
optional
Example:
Rivals
category
string 
optional
Example:
Combat
points
integer 
optional
Example:
50
icon
string 
optional
Example:
achievements/rivals-30000001-icon.webp
🟠400Bad Request
🟠401Unauthorized
🟠404Record Not Found
🔴500Server Error
Modified at 2025-07-23 14:35:31
Previous
Community Libraries
Next
Search achievement
Built with