### Get Valorant Account by PUUID (v1) Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Fetches basic account data for a Valorant player using their PUUID. Requires the player's PUUID as a path parameter. ```json { "openapi": "3.0.0", "info": { "title": "Valorant API", "version": "1.0.0" }, "paths": { "/valorant/v1/by-puuid/account/{puuid}": { "get": { "summary": "Get account by PUUID", "parameters": [ { "name": "puuid", "in": "path", "required": true, "schema": { "type": "string" } } ], "responses": { "200": { "description": "Successful response" } } } } } } ``` -------------------------------- ### Get Valorant Matchlist by PUUID (v3) Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Retrieves the matchlist for a Valorant player using their unique PUUID and region. This method is available in API version 3. ```openapi GET /valorant/v3/by-puuid/matches/{region}/{puuid} ``` -------------------------------- ### Get Valorant Matchlist by PUUID (v4) Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Retrieves the matchlist for a Valorant player using their unique PUUID, region, and platform. This method is part of API version 4. ```openapi GET /valorant/v4/by-puuid/matches/{region}/{platform}/{puuid} ``` -------------------------------- ### Get Valorant Matchlist by Name (v3) Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Retrieves the matchlist for a given Valorant player using their region, name, and tag. This endpoint is part of API version 3. ```openapi GET /valorant/v3/matches/{region}/{name}/{tag} ``` -------------------------------- ### Get Valorant MMR by UUID (v3) Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Retrieves detailed MMR data for a Valorant player using their region, platform, and player UUID. This is the recommended v3 endpoint. ```shell GET /valorant/v3/by-puuid/mmr/{region}/{platform}/{puuid} ``` -------------------------------- ### Get Valorant Account by PUUID (v2) Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Fetches basic account data for a Valorant player using their PUUID. This is the console-supported version. Requires the player's PUUID as a path parameter. ```json { "openapi": "3.0.0", "info": { "title": "Valorant API", "version": "2.0.0" }, "paths": { "/valorant/v2/by-puuid/account/{puuid}": { "get": { "summary": "Get account by PUUID (v2)", "parameters": [ { "name": "puuid", "in": "path", "required": true, "schema": { "type": "string" } } ], "responses": { "200": { "description": "Successful response" } } } } } } ``` -------------------------------- ### Get Valorant MMR by Name and Tag (v3) Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Retrieves detailed MMR data for a Valorant player using their region, platform, name, and tag. This is the recommended v3 endpoint. ```shell GET /valorant/v3/mmr/{region}/{platform}/{name}/{tag} ``` -------------------------------- ### Get Valorant Account by Name and Tag (v1) Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Fetches basic account data for a Valorant player using their in-game name and tag. Requires the player's name and tag as path parameters. ```json { "openapi": "3.0.0", "info": { "title": "Valorant API", "version": "1.0.0" }, "paths": { "/valorant/v1/account/{name}/{tag}": { "get": { "summary": "Get account by name and tag", "parameters": [ { "name": "name", "in": "path", "required": true, "schema": { "type": "string" } }, { "name": "tag", "in": "path", "required": true, "schema": { "type": "string" } } ], "responses": { "200": { "description": "Successful response" } } } } } } ``` -------------------------------- ### Get Valorant Premier Seasons by Region Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Fetches information about Valorant Premier seasons for a specified region. This endpoint is crucial for understanding season-specific data and availability. ```json { "openapi": "3.0.0", "info": { "title": "Valorant Premier API", "version": "1.0.0" }, "paths": { "/valorant/v1/premier/seasons/{region}": { "get": { "summary": "Get Premier Seasons by Region", "parameters": [ { "name": "region", "in": "path", "required": true, "schema": { "type": "string" } } ], "responses": { "200": { "description": "Successful response with season data" } } } } } } ``` -------------------------------- ### Get Valorant Premier Conferences Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Retrieves information about Valorant Premier conferences. This endpoint provides data related to the conference structure within the Premier mode. ```json { "openapi": "3.0.0", "info": { "title": "Valorant Premier API", "version": "1.0.0" }, "paths": { "/valorant/v1/premier/conferences": { "get": { "summary": "Get Premier Conferences", "responses": { "200": { "description": "Successful response with conference data" } } } } } } ``` -------------------------------- ### Get Valorant Premier Leaderboard by Region Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Retrieves the Valorant Premier leaderboard for a specified region. This endpoint provides ranked data for teams or players within a region. ```json { "openapi": "3.0.0", "info": { "title": "Valorant Premier API", "version": "1.0.0" }, "paths": { "/valorant/v1/premier/leaderboard/{region}": { "get": { "summary": "Get Premier Leaderboard by Region", "parameters": [ { "name": "region", "in": "path", "required": true, "schema": { "type": "string" } } ], "responses": { "200": { "description": "Successful response with leaderboard data" } } } } } } ``` -------------------------------- ### Get Valorant MMR by UUID (v2) Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Retrieves detailed MMR data for a Valorant player using their region and player UUID. This endpoint is part of the v2 API. ```shell GET /valorant/v2/by-puuid/mmr/{region}/{puuid} ``` -------------------------------- ### Get Valorant Matchlist by Name (v4) Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Retrieves the matchlist for a given Valorant player using their region, platform, name, and tag. This endpoint is part of the newer API version 4. ```openapi GET /valorant/v4/matches/{region}/{platform}/{name}/{tag} ``` -------------------------------- ### Get Valorant Account by Name and Tag (v2) Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Fetches basic account data for a Valorant player using their in-game name and tag. This is the console-supported version of the endpoint. Requires the player's name and tag as path parameters. ```json { "openapi": "3.0.0", "info": { "title": "Valorant API", "version": "2.0.0" }, "paths": { "/valorant/v2/account/{name}/{tag}": { "get": { "summary": "Get account by name and tag (v2)", "parameters": [ { "name": "name", "in": "path", "required": true, "schema": { "type": "string" } }, { "name": "tag", "in": "path", "required": true, "schema": { "type": "string" } } ], "responses": { "200": { "description": "Successful response" } } } } } } ``` -------------------------------- ### Get Valorant MMR by Name and Tag (v2) Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Retrieves detailed MMR data for a Valorant player using their region, name, and tag. This endpoint is part of the v2 API. ```shell GET /valorant/v2/mmr/{region}/{name}/{tag} ``` -------------------------------- ### Get Single Valorant Match by ID (v2) Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Fetches data for a specific Valorant match using its unique match ID. This endpoint is part of API version 2. ```openapi GET /valorant/v2/match/{matchid} ``` -------------------------------- ### Get Valorant Premier Team Match History Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Fetches the match history for a specific Valorant Premier team, identified by its name and tag. This endpoint allows users to review past matches played by a team. ```json { "openapi": "3.0.0", "info": { "title": "Valorant Premier API", "version": "1.0.0" }, "paths": { "/valorant/v1/premier/{team_name}/{team_tag}/history": { "get": { "summary": "Get Premier Team Match History", "parameters": [ { "name": "team_name", "in": "path", "required": true, "schema": { "type": "string" } }, { "name": "team_tag", "in": "path", "required": true, "schema": { "type": "string" } } ], "responses": { "200": { "description": "Successful response with match history" } } } } } } ``` -------------------------------- ### Get Valorant MMR History by Name (v1) Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Fetches the MMR history for a Valorant player using their region, name, and tag. This endpoint provides details on Rank Rating (RR) movement for each competitive game played. ```json { "openapi": "3.0.0", "info": { "title": "Valorant API", "version": "1.0.0" }, "paths": { "/valorant/v1/mmr-history/{region}/{name}/{tag}": { "get": { "summary": "Get MMR history by name", "parameters": [ { "name": "region", "in": "path", "required": true, "schema": { "type": "string" } }, { "name": "name", "in": "path", "required": true, "schema": { "type": "string" } }, { "name": "tag", "in": "path", "required": true, "schema": { "type": "string" } } ], "responses": { "200": { "description": "Successful response" } } } } } } ``` -------------------------------- ### Get Valorant Premier Leaderboard by Region, Conference, and Division Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Retrieves the Valorant premier leaderboard data for a specified region, conference, and division. This endpoint is part of the Valorant SL Beta API. ```HTTP GET /valorant/v1/premier/leaderboard/{region}/{conference}/{division} ``` -------------------------------- ### Get Valorant Premier Leaderboard by Region and Conference Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Retrieves the Valorant premier leaderboard data for a specified region and conference. This endpoint is part of the Valorant SL Beta API. ```HTTP GET /valorant/v1/premier/leaderboard/{region}/{conference} ``` -------------------------------- ### Get Valorant MMR History by Name (v2) Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Fetches the MMR history for a Valorant player using their region, platform, name, and tag. This updated endpoint provides access to the latest data on Rank Rating (RR) movements. ```json { "openapi": "3.0.0", "info": { "title": "Valorant API", "version": "1.0.0" }, "paths": { "/valorant/v2/mmr-history/{region}/{platform}/{name}/{tag}": { "get": { "summary": "Get MMR history by name (v2)", "parameters": [ { "name": "region", "in": "path", "required": true, "schema": { "type": "string" } }, { "name": "platform", "in": "path", "required": true, "schema": { "type": "string" } }, { "name": "name", "in": "path", "required": true, "schema": { "type": "string" } }, { "name": "tag", "in": "path", "required": true, "schema": { "type": "string" } } ], "responses": { "200": { "description": "Successful response" } } } } } } ``` -------------------------------- ### Get Valorant MMR History by PUUID (v2) Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Retrieves the MMR history for a Valorant player using their region, platform, and PUUID. This endpoint is part of the v2 API and offers access to the most current competitive game data. ```json { "openapi": "3.0.0", "info": { "title": "Valorant API", "version": "1.0.0" }, "paths": { "/valorant/v2/by-puuid/mmr-history/{region}/{platform}/{puuid}": { "get": { "summary": "Get MMR history by PUUID (v2)", "parameters": [ { "name": "region", "in": "path", "required": true, "schema": { "type": "string" } }, { "name": "platform", "in": "path", "required": true, "schema": { "type": "string" } }, { "name": "puuid", "in": "path", "required": true, "schema": { "type": "string" } } ], "responses": { "200": { "description": "Successful response" } } } } } } ``` -------------------------------- ### Get Single Valorant Match by ID (v4) Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Fetches data for a specific Valorant match using its unique match ID and region. This endpoint is part of API version 4. ```openapi GET /valorant/v4/match/{region}/{matchid} ``` -------------------------------- ### Get Valorant Premier Team Data by ID Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Retrieves detailed information for a specific Valorant Premier team using its unique ID. This endpoint is useful for directly accessing team data when the ID is known. ```json { "openapi": "3.0.0", "info": { "title": "Valorant Premier API", "version": "1.0.0" }, "paths": { "/valorant/v1/premier/{team_id}": { "get": { "summary": "Get Premier Team Data by ID", "parameters": [ { "name": "team_id", "in": "path", "required": true, "schema": { "type": "string" } } ], "responses": { "200": { "description": "Successful response with team data" } } } } } } ``` -------------------------------- ### Get Valorant MMR History by PUUID (v1) Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Retrieves the MMR history for a Valorant player using their region and PUUID. This endpoint is useful for directly accessing a player's competitive game history and RR changes. ```json { "openapi": "3.0.0", "info": { "title": "Valorant API", "version": "1.0.0" }, "paths": { "/valorant/v1/by-puuid/mmr-history/{region}/{puuid}": { "get": { "summary": "Get MMR history by PUUID", "parameters": [ { "name": "region", "in": "path", "required": true, "schema": { "type": "string" } }, { "name": "puuid", "in": "path", "required": true, "schema": { "type": "string" } } ], "responses": { "200": { "description": "Successful response" } } } } } } ``` -------------------------------- ### Get Valorant Premier Team Data Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Retrieves detailed information for a specific Valorant Premier team using its name and tag. This endpoint is part of the Valorant API and requires the team's name and tag as parameters. ```json { "openapi": "3.0.0", "info": { "title": "Valorant Premier API", "version": "1.0.0" }, "paths": { "/valorant/v1/premier/{team_name}/{team_tag}": { "get": { "summary": "Get Premier Team Data", "parameters": [ { "name": "team_name", "in": "path", "required": true, "schema": { "type": "string" } }, { "name": "team_tag", "in": "path", "required": true, "schema": { "type": "string" } } ], "responses": { "200": { "description": "Successful response with team data" } } } } } } ``` -------------------------------- ### Get Valorant Premier Team Match History by ID Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Fetches the match history for a specific Valorant Premier team using its unique ID. This endpoint provides a way to access a team's match history via its identifier. ```json { "openapi": "3.0.0", "info": { "title": "Valorant Premier API", "version": "1.0.0" }, "paths": { "/valorant/v1/premier/{team_id}/history": { "get": { "summary": "Get Premier Team Match History by ID", "parameters": [ { "name": "team_id", "in": "path", "required": true, "schema": { "type": "string" } } ], "responses": { "200": { "description": "Successful response with match history" } } } } } } ``` -------------------------------- ### Search Valorant Premier Teams Source: https://github.com/naheedroomy/valorantsl-beta/blob/main/LLM.md Allows searching for Valorant Premier teams. This endpoint is useful for finding teams based on various criteria, though specific search parameters are not detailed here. ```json { "openapi": "3.0.0", "info": { "title": "Valorant Premier API", "version": "1.0.0" }, "paths": { "/valorant/v1/premier/search": { "get": { "summary": "Search Premier Teams", "responses": { "200": { "description": "Successful response with search results" } } } } } } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.