Skip to content

User Set Requests

A call to this endpoint will retrieve a given user's set requests, maximum total requests and points until next request.

On-Site Representation

Set Requests

HTTP Request

GET

https://retroachievements.org/API/API_GetUserSetRequests.php?u=MaxMilyin

Query Parameters

NameRequired?Description
yYesYour web API key.
uYesThe target username.
tNoRequest List Type: 0 for active requests, 1 for all requests. Defaults to 0.

Client Library

Not Yet Supported

Response

json
{
  "RequestedSets": [
    {
      "GameID": 8149,
      "Title": "Jurassic Park Institute Tour: Dinosaur Rescue",
      "ConsoleID": 5,
      "ConsoleName": "Game Boy Advance",
      "ImageIcon": "/Images/000001.png"
    },
    {
      "GameID": 600,
      "Title": "Psycho Pinball",
      "ConsoleID": 1,
      "ConsoleName": "Genesis/Mega Drive",
      "ImageIcon": "/Images/039797.png"
    },
    {
      "GameID": 1,
      "Title": "Sonic the Hedgehog",
      "ConsoleID": 1,
      "ConsoleName": "Genesis/Mega Drive",
      "ImageIcon": "/Images/085573.png"
    }
  ],
  "TotalRequests": 5,
  "PointsForNext": 5000
}

Source

RepoURL
RAWebhttps://github.com/RetroAchievements/RAWeb/blob/master/public/API/API_GetUserSetRequests.php

Released under the MIT license.