GET https://seller-api.playerauctions.com/api/v1/media/images
Query uploaded images for offers.
i. Request Parameters
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| gameId | int | Yes | Game ID. |
ii. Response Example
Success Response (JSON)
{
"code": 10000,
"message": "",
"requestId": "550e8400-e29b-41d4-a716-446655440000",
"data": {
"totalSize": 70455,
"images": [
{
"blobName": "202606092056595659.png",
"sasUri": "https://cdn-image.azureedge.net/offer-image/liutest6/202606092056595659.png",
"created": "2026-06-10T03:56:59+00:00",
"length": 70455,
"verified": true
}
]
}
}Error Response
{
"code": 10002,
"message": "Invalid parameter.",
"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 | object | Response data object containing the result. |
| └─ totalSize | int | Total size of all images in bytes. |
| └─ images | array | List of image objects. |
| └─ └─ blobName | string | Name of the image blob file. |
| └─ └─ sasUri | string | SAS URI for accessing the image. |
| └─ └─ created | string | Creation timestamp in ISO 8601 format. |
| └─ └─ length | int | Size of the image file in bytes. |
| └─ └─ verified | boolean | Indicates whether the image has been verified. |