List games
GEThttps://api.n00.testnet.vega.rocks/api/v2/games
Get a list of games and corresponding game data, given the provided filters
Request
Query Parameters
- ENTITY_SCOPE_INDIVIDUALS: Rewards must be distributed directly to eligible parties.
- ENTITY_SCOPE_TEAMS: Rewards must be distributed to directly eligible teams, and then amongst team members
Game ID to filter for.
First epoch to retrieve game data from. If not provided, defaults to the last epoch minus 30, or the first epoch available if not enough epochs have passed.
Last epoch to retrieve game data to (inclusive). If not provided, defaults to the last epoch.
Possible values: [ENTITY_SCOPE_UNSPECIFIED
, ENTITY_SCOPE_INDIVIDUALS
, ENTITY_SCOPE_TEAMS
]
Default value: ENTITY_SCOPE_UNSPECIFIED
Entity scope to filter games for, i.e. team games or individual games only.
Number of records to be returned that sort greater than row identified by cursor supplied in 'after'.
If paging forwards, the cursor string for the last row of the previous page.
Number of records to be returned that sort less than row identified by cursor supplied in 'before'.
If paging forwards, the cursor string for the first row of the previous page.
Whether to order the results with the newest records first. If not set, the default value is true.
Responses
- 200
- 500
- default
A successful response.
- application/json
- Schema
- Example (from schema)
Schema
games object
{
"games": {
"edges": [
{
"cursor": "string",
"node": {
"epoch": "string",
"id": "string",
"individual": {
"individual": [
{
"individual": "string",
"rank": "string",
"rewardEarned": "string",
"rewardEarnedQuantum": "string",
"rewardMetric": "DISPATCH_METRIC_UNSPECIFIED",
"totalRewardsEarned": "string",
"totalRewardsEarnedQuantum": "string",
"volume": "string"
}
]
},
"participants": "string",
"rewardAssetId": "string",
"team": {
"team": [
{
"rank": "string",
"rewardEarned": "string",
"rewardEarnedQuantum": "string",
"rewardMetric": "DISPATCH_METRIC_UNSPECIFIED",
"team": {
"membersParticipating": [
{
"individual": "string",
"rank": "string",
"rewardEarned": "string",
"rewardEarnedQuantum": "string",
"rewardMetric": "DISPATCH_METRIC_UNSPECIFIED",
"totalRewardsEarned": "string",
"totalRewardsEarnedQuantum": "string",
"volume": "string"
}
],
"teamId": "string"
},
"totalRewardsEarned": "string",
"totalRewardsEarnedQuantum": "string",
"volume": "string"
}
]
}
}
}
],
"pageInfo": {
"endCursor": "string",
"hasNextPage": true,
"hasPreviousPage": true,
"startCursor": "string"
}
}
}
An internal server error
- application/json
- Schema
- Example (from schema)
Schema
details object[]
{
"code": 0,
"details": [
{
"@type": "string"
}
],
"message": "string"
}
An unexpected error response.
- application/json
- Schema
- Example (from schema)
Schema
details object[]
{
"code": 0,
"details": [
{
"@type": "string"
}
],
"message": "string"
}
- curl
- python
- go
- nodejs
- CURL
curl -L -X GET 'https://api.n00.testnet.vega.rocks/api/v2/games' \
-H 'Accept: application/json'