Get upcoming game releases ordered by closest release date first.
Parameters
cursor
string
Optional
No description available.
from
string
Optional
Lower bound date as YYYYMMDD (exclusive). Overrides 'now' for the chronological mode filter.
limit
integer
Optional
No description available.
now
string
Optional
Current date as YYYYMMDD. Used to determine what counts as upcoming.
shuffle
boolean
Optional
When true, returns a randomized subset from the near-term window instead of stable chronological order.
to
string
Optional
Upper bound date as YYYYMMDD (inclusive). Limits results to releases on or before this date.
Output
application/jsoncursor
string
Optional
No description available.
feed
array
Required
No description available.
totalCount
integer
Optional
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"feed"
],
"properties": {
"feed": {
"type": "array",
"items": {
"ref": "games.gamesgamesgamesgames.defs#gameFeedViewItem",
"type": "ref"
}
},
"cursor": {
"type": "string"
},
"totalCount": {
"type": "integer"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"to": {
"type": "string",
"description": "Upper bound date as YYYYMMDD (inclusive). Limits results to releases on or before this date."
},
"now": {
"type": "string",
"description": "Current date as YYYYMMDD. Used to determine what counts as upcoming."
},
"from": {
"type": "string",
"description": "Lower bound date as YYYYMMDD (exclusive). Overrides 'now' for the chronological mode filter."
},
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string"
},
"shuffle": {
"type": "boolean",
"default": false,
"description": "When true, returns a randomized subset from the near-term window instead of stable chronological order."
}
}
},
"description": "Get upcoming game releases ordered by closest release date first."
}