Results
Get All Results

Get all results

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

Provides information about the results of games already played. By making a GET request to this URL, you will get a list of results along with your basic information.

Parameters

ParameterDefaultDescription
page1Current page number.

Request example

GET
https://statsvlr.n0step.xyz/api/v1/results?page=1

Response

{
  "status": "string",
  "size": 0,
  "data": [
    {
      "id": "string",
      "teams": [
        {
          "name": "string",
          "score": "string",
          "country": "string",
          "won": true
        }
      ],
      "status": "string",
      "ago": "string",
      "event": "string",
      "tournament": "string",
      "img": "string"
    }
  ]
}

That way, you will be able to obtain information about the results.