Get team info
GET
https://statsvlr.nostep.xyz/api/v1/teams/{teamid}Provides detailed information about a Valorant team. By making a GET request to this URL with the teamid parameter, you will get information such as team name, players, staff, events, results and upcoming events in which the team participates.
Parameters
| Parameter | Required | Description |
|---|---|---|
teamid | ✅ | ID of the team to be consulted |
Response
{
"status": "string",
"data": {
"info": {
"name": "string",
"tag": "string",
"logo": "string"
},
"players": [
{
"id": "string",
"url": "string",
"user": "string",
"name": "string",
"img": "string",
"country": "string"
}
],
"staff": [
{
"id": "string",
"url": "string",
"user": "string",
"name": "string",
"tag": "string",
"img": "string",
"country": "string"
}
],
"events": [
{
"id": "string",
"url": "string",
"name": "string",
"results": ["string"],
"year": "string"
}
],
"results": [
{
"match": {
"id": "string",
"url": "string"
},
"event": {
"name": "string",
"logo": "string"
},
"teams": [
{
"name": "string",
"tag": "string",
"logo": "string",
"points": "string"
}
]
}
],
"upcoming": [
{
"match": {
"id": "string",
"url": "string"
},
"event": {
"name": "string",
"logo": "string"
},
"teams": [
{
"name": "string",
"tag": "string",
"logo": "string"
}
]
}
]
}
}That's it! This documentation will provide you with the information you need to interact with the API and understand the structure of the response. Remember to replace teamid in the request URL with the ID of the team you want to query.
Playground
Enter the team's ID to see its information.