Players
Get All Players

Get all players

GET
https://statsvlr.n0step.xyz/api/v1/players

Provides information about Valorant players. By making a GET request to this URL, you will get a list of players along with details such as their ID, name, team, country, and pagination details.

Parameters

ParameterDefaultDescription
page1Current page number.
limit10Limit of results per page. You can also use all to get all players.
event_seriesallEvent series. event group id
eventallSpecific event. event id
regionallSpecific region. na eu ap jp sa oce mn gc
countryallSpecific country. co es ...
minrounds200Minimum number of rounds played.
minrating1550Minimum rating.
agentallSpecific agent. astra jett ...
mapallSpecific map. map id
timespan60dSpecific time period. 30d 60d 90d all

Request example

GET
https://statsvlr.n0step.xyz/api/v1/players?limit=3&country=co

Response

{
  "status": "string",
  "size": 0,
  "pagination": {
    "page": 0,
    "limit": 0,
    "totalElements": 0,
    "totalPages": 0,
    "hasNextPage": true
  },
  "data": [
    {
      "url": "string",
      "user": "string",
      "name": "string",
      "img": "string",
      "country": "string"
    }
  ]
}

You will be able to get detailed information about the players. Remember that this API also provides paging information to handle large data sets.