MarvelRivalsAPI.com
  1. Player Stats
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
    • 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
        GET
      • Player stats
        GET
      • Player stats v2
        GET
      • Update player
        GET
      • Player Leaderboard
        GET
  1. Player Stats

Search player

GET
/api/v1/find-player/{username}
Player Stats
Maintainer:Alastor
This endpoint retrieves player uid for a specific player identified by their username. It returns basic player information such as name, unique identifier (UID), and tracks API usage.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://marvelrivalsapi.com/api/v1/find-player/' \
--header 'x-api-key;'
Response Response Example
200 - Example 1
{
    "name": "Player One",
    "uid": "123456"
}

Request

Path Params
username
string 
required
The username of the player to retrieve data for.
Example:
player123
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 player data
Body
name
string 
optional
The name of the player.
Example:
Player One
uid
string 
optional
The unique identifier (UID) for the player.
Example:
123456
🟠400Bad Request
🟠401Unauthorized
🟠404Record Not Found
🔴500Server Error
Modified at 2025-07-23 14:35:31
Previous
Player match history v2
Next
Player stats
Built with