List Catalog Items
GET
https://api.lootlocker.io/admin/game/{game_id}/catalog/{catalog_id}/prices
economy
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://api.lootlocker.io/admin/game//catalog//prices' \
--header 'x-auth-token: ' \
--header 'x-auth-token;'
Response Response Example
{
"entries": [
{
"created_at": "2024-01-15T12:05:57Z",
"listings": {
"steam_store": {
"description": "Some really cool sword",
"prices": [
{
"currency": "USD",
"amount": 1200
},
{
"currency": "EUR",
"amount": 1500
}
]
}
},
"entity_kind": "asset",
"entity_name": "Sword",
"prices": [],
"entity_id": "01HM6G6FWXD1MN9KRK78BSGNFA",
"catalog_listing_id": "01HM6G77Y87AWWQ75MCG9V66VQ",
"purchasable": false
}
],
"assets_details": [
{
"name": "Sword",
"thumbnail": null,
"variation_id": null,
"rental_option_id": null,
"legacy_id": 298778,
"id": "01HM6G6FWXD1MN9KRK78BSGNFA",
"catalog_listing_id": "01HM6G77Y87AWWQ75MCG9V66VQ"
}
],
"progression_points_details": [],
"progression_resets_details": [],
"currency_details": [],
"catalog": {
"name": "some catalog",
"key": "some_catalog",
"id": "01HM6G749NES3BHHAG1Q1130XH"
},
"pagination": {
"previous_cursor": null,
"next_cursor": null,
"total": 1
}
}
Request
Path Params
game_id
stringÂ
required
Example:
{{dev_game_id}}
catalog_id
stringÂ
required
Example:
{{catalog_id}}
Header Params
x-auth-token
stringÂ
required
Example:
{{admin_auth_token}}
Responses
Modified at 2024-04-25 10:39:25