Discover/Tracker API
live

Tracker APItracker.network

Track your Rocket League competitive ranking across all playlists and platforms by searching for any player, getting instant access to their current MMR ratings. Monitor your own progression or compare skill levels with friends using real-time data from Tracker Network.

This API takes change requests — .
Endpoint health
monitored
get_player_mmr
Checks pendingself-healing
Endpoints
1
Updated
2h ago
This call costs1 credit / call— charged only on success
Try it
The gaming platform the player uses.
The player's username or ID on the chosen platform (e.g. Epic Games display name, Steam ID, Xbox gamertag, PSN ID, or Nintendo Switch name).
api.parse.bot/scraper/43963aeb-490b-4485-a43a-7d4a7c09a5ee/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/43963aeb-490b-4485-a43a-7d4a7c09a5ee/get_player_mmr?platform=epic&identifier=Squishy.Official' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 1 totalmissing one? ·

Retrieve a Rocket League player's MMR ratings across all ranked and unranked playlists for the current season. Returns the player's rating, rank tier, division, matches played, and win streak for each playlist (e.g. Ranked Duel 1v1, Ranked Doubles 2v2, Ranked Standard 3v3, Hoops, Rumble, Casual, etc.). One upstream request per call; no pagination.

Input
ParamTypeDescription
platformrequiredstringThe gaming platform the player uses.
identifierrequiredstringThe player's username or ID on the chosen platform (e.g. Epic Games display name, Steam ID, Xbox gamertag, PSN ID, or Nintendo Switch name).
Response
{
  "type": "object",
  "fields": {
    "season": "Current Rocket League competitive season number",
    "platform": "Platform slug used for the lookup",
    "playlists": "Array of playlist MMR entries for the current season",
    "platform_user_id": "Internal platform user ID",
    "platform_user_handle": "Display name on the platform"
  },
  "sample": {
    "data": {
      "season": 37,
      "platform": "epic",
      "playlists": [
        {
          "mmr": 1260,
          "tier": "20",
          "division": "2",
          "tier_name": "Grand Champion II",
          "win_streak": 1,
          "mmr_display": "1,260",
          "playlist_id": 10,
          "division_name": "Division III",
          "playlist_name": "Ranked Duel 1v1",
          "matches_played": 4
        },
        {
          "mmr": 2203,
          "tier": "22",
          "division": "0",
          "tier_name": "Supersonic Legend",
          "win_streak": 2,
          "mmr_display": "2,203",
          "playlist_id": 11,
          "division_name": "Division I",
          "playlist_name": "Ranked Doubles 2v2",
          "matches_played": 227
        }
      ],
      "platform_user_id": "6353ea5b-1424-4018-8b1b-b83df7e21f41",
      "platform_user_handle": "Squishy.Official"
    },
    "status": "success"
  }
}

About the Tracker API

The Tracker API on Parse exposes 1 endpoint for the publicly available data on tracker.network. Calls return JSON over HTTPS and are billed per successful response.

Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.