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

Search achievement

GET
/api/v1/achievement/{query}
Achievements
Maintainer:Alastor
This endpoint allows searching for a specific achievement either by its unique ID or its name.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://marvelrivalsapi.com/api/v1/achievement/' \
--header 'x-api-key;'
Response Response Example
{
    "achievement": {
        "name": "Sticking Around",
        "category": "Exploration",
        "points": 100,
        "icon": "/achievements/Sticking_Around.webp",
        "mission": "Unlocked by discovering all hidden locations."
    }
}

Request

Path Params
query
string 
required
The unique ID or name of the achievement to search for.
Example:
50000001
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
The achievement matching the search criteria.
Body
achievement
object 
optional
The achievement matching the search.
name
string 
optional
Example:
Sticking Around
category
string 
optional
Example:
Exploration
points
integer 
optional
Example:
100
icon
string 
optional
Example:
/achievements/Sticking_Around.webp
mission
string 
optional
Example:
Unlocked by discovering all hidden locations.
🟠400Bad Request
🟠404Record Not Found
🔴500Server Error
Modified at 2025-07-23 14:35:31
Previous
List achievements
Next
List balances
Built with