Get Most Ticketed Games
A call to API_GetTicketData
in this manner will retrieve the games on the site with the highest count of opened achievement tickets.
HTTP Request
GET
https://retroachievements.org/API/API_GetTicketData?f=1
Query Parameters
Name | Required? | Description |
---|---|---|
y | Yes | Your web API key. |
f | Yes | Must be set to 1. |
c | Count, number of records to return (default: 10, max: 100). | |
o | Offset, number of entries to skip (default: 0). |
Client Library
ts
import { buildAuthorization, getTicketData } from "@retroachievements/api";
// First, build your authorization object.
const username = "<your username on RA>";
const webApiKey = "<your web API key>";
const authorization = buildAuthorization({ username, webApiKey });
// Then, make the API call.
const ticket = await getTicketData(authorization, {
isGettingMostTicketedGames: true,
});
kotlin
val credentials = RetroCredentials("<username>", "<web api key>")
val api: RetroInterface = RetroClient(credentials).api
val response: NetworkResponse<GetMostTicketedGames.Response, ErrorResponse> = api.getMostTicketedGames()
if (response is NetworkResponse.Success) {
// handle the data
val mostTicketedGames: GetMostTicketedGames.Response = response.body
} else if (response is NetworkResponse.Error) {
// if the server returns an error it be found here
val errorResponse: ErrorResponse? = response.body
// if the api (locally) had an internal error, it'll be found here
val internalError: Throwable? = response.error
}
Response
json
{
"MostReportedGames": [
{
"GameID": 9701,
"GameTitle": "Dead 'n' Furious | Touch the Dead",
"GameIcon": "/Images/070109.png",
"Console": "Nintendo DS",
"OpenTickets": 12
},
{
"GameID": 10438,
"GameTitle": "Crash Team Racing",
"GameIcon": "/Images/081550.png",
"Console": "PlayStation",
"OpenTickets": 11
}
],
"URL": "https://retroachievements.org/manage/most-reported-games"
}
json
{
"mostReportedGames": [
{
"gameId": 2642,
"gameTitle": "Kingdom Hearts: 358/2 Days",
"gameIcon": "/Images/056478.png",
"console": "Nintendo DS",
"openTickets": 6
},
{
"gameId": 13964,
"gameTitle": "Grinch, The",
"gameIcon": "/Images/065586.png",
"console": "PlayStation",
"openTickets": 6
}
// ...
],
"url": "https://retroachievements.org/ticketmanager.php?f=1"
}