GEThttps://seller-api.playerauctions.com/api/v1/games
Query the list of available games.
i. Request Parameters
No request parameters required.
ii. Response Example
Success Response
{
"code": 10000,
"message": "",
"requestId": "550e8400-e29b-41d4-a716-446655440000",
"data": [
{
"gameId": 3637,
"gameName": "League of Legends",
"seoName": "LOL",
"gameNameAb": "League of Legends",
"curName": "Riot Points",
"curSuffix": "K",
"productType": "currency,item,account,powerleveling,topup",
"aliases": ",",
"isSecurityQARequired": 0,
"isCDKeyRequired": 0,
"isParentalPswRequired": 0,
"isInvolveExploitsGame": false,
"isMCurrencyType": false
},
{
"gameId": 5263,
"gameName": "RuneScape - Old School",
"seoName": "OSRS",
"gameNameAb": "RuneScape - Old School",
"curName": "Gold",
"curSuffix": "M",
"productType": "currency,item,account,powerleveling,topup",
"aliases": ",",
"isSecurityQARequired": 1,
"isCDKeyRequired": 1,
"isParentalPswRequired": 1,
"isInvolveExploitsGame": true,
"isMCurrencyType": true
}
]
}
Error Response
{
"code": 50001,
"message": "Internal server error.",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
iii. Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | int | Response code. 10000 indicates success; other values indicate an error. |
| message | string | Response message. Contains error details on failure. |
| requestId | string | Unique identifier for the request, used for tracking. |
| data | array | List of available games. |
| └─ gameId | int | Unique identifier for the game. |
| └─ gameName | string | Full name of the game. |
| └─ seoName | string | SEO-friendly name/abbreviation for the game. |
| └─ gameNameAb | string | Abbreviated name of the game. |
| └─ curName | string | Name of the in-game currency. |
| └─ curSuffix | string | Suffix used for currency amounts (e.g., K for thousands, M for millions). |
| └─ productType | string | Comma-separated list of available product types for this game (currency, item, account, powerleveling, topup). |
| └─ aliases | string | Comma-separated aliases for the game. |
| └─ isSecurityQARequired | int | Indicates whether Security Questions and answers are required. 1:Yes, 0: No. |
| └─ isCDKeyRequired | int | Indicates whether CD Key is required. 1:Yes, 0: No. |
| └─ isParentalPswRequired | int | Indicates whether Parental Password is required. 1:Yes, 0: No. |
| └─ isInvolveExploitsGame | boolean | Tips: Indicate that the offer will be removed if the listing product uses hacks or modifications that affect other players' gameplay. True:Display,False:Not display. |
| └─ isMCurrencyType | boolean | Indicates whether the game supports multi-currency; 1:True, 0: False. If 1, providing a currencyType is required when creating a Currency Offer for this game. |