Server API
HomeLootLocker
HomeLootLocker
LootLocker
  1. Catalogs
  • Session
    • Session
      POST
    • Ping
      GET
  • Leaderboards
    • Schedules
      • Create
      • Delete
      • Get
    • Rewards
      • Create
      • Delete
    • Archives
      • Download
      • List
    • Get Leaderboard
      GET
    • Create Leaderboard
      POST
    • Update Leaderboard
      PUT
    • Delete Leaderboard
      DELETE
    • Submit Score
      POST
    • Get All Member Ranks
      GET
    • Get Score List
      GET
  • Assets
    • Get Assets
      GET
  • Asset Instances
    • Get All Storage To Asset Instance
      GET
    • Get Storage Pair by ID
      GET
    • Create Storage Pair on Asset Instance
      POST
    • Update Storage Pairs by Key on Instance
      PUT
    • Update Storage Pair by ID on Instance
      PUT
    • Delete Storage Pair by ID on Instance
      DELETE
  • Triggers
    • Invoke Trigger
      POST
  • Inventories
    • List Player Inventory
      GET
    • Get Character Inventory
      GET
    • Get Hero Inventory
      GET
    • Alter Player Inventory
      PATCH
    • Add Asset to Player Inventory
      POST
    • List Universal Assets
      GET
  • Loadouts
    • Get Player Loadout
    • Equip Asset for Player Loadout
    • Unequip Asset for Player Loadout
    • Get Character Loadout
    • Equip Asset for Character Loadout
    • Unequip Asset for Character Loadout
    • Get Hero Loadout
    • Equip Asset for Hero Loadout
    • Unequip Asset for Hero Loadout
  • Characters & Heroes
    • Get Player Characters
    • Get Player Heroes
  • Player Storage
    • Get Player Storage
    • Lookup keys for Multiple Players
    • Delete for Multiple Players
    • Set for Multiple Players
  • Player Files
    • List Files for Player
    • Get File By ID for Player
    • Delete File By ID for Player
    • Upload File For Player
  • Drop Tables
    • Compute and Lock Drop Table
    • Pick Drops
  • Loot Boxes
    • Inspect Loot Box
    • Open Loot Box
  • Player
    • Get Player Info By Game Session Tokens
    • Create Player
    • Lookup Player Names by IDs
  • Progressions
    • Tiers
      • Get Progression Tiers
      • Get Single Progression Tier By Step
    • Players
      • Get All Player Progressions
      • Get Player Progressions By ID
      • Add points to player progression
      • Subtract points from player progression
      • Reset player progression
      • Delete player progression
    • Characters
      • Get All Character Progressions
      • Get Character Progressions By ID
      • Add points to Character progression
      • Subtract points from Character progression
      • Reset Character progression
      • Delete Character progression
    • Asset Instances
      • Get All Asset Instance Progressions
      • Get Asset Instance Progressions By ID
      • Add points to Asset Instance progression
      • Subtract points from Asset Instance progression
      • Reset Asset Instance progression
      • Delete Asset Instance progression
    • Get All Progressions
    • Get Progression By Key
  • Balances
    • Create Wallet Modifiers
    • Credit Balance
    • Debit Balance
    • List Balances
    • Create New Wallet
    • Get Wallet
    • Get Wallet for Holder
  • Currency
    • List Currencies
  • Friends
    • List Friends
  • Metadata
    • Metadata Actions
    • List Metadata
    • List Multisource Metadata
  • Catalogs
    • List Catalog Items By Key
      GET
  • Notifications
    • Send Notification to Player
  1. Catalogs

List Catalog Items By Key

GET
https://api.lootlocker.io/server/catalogs/key/{key}/prices
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.lootlocker.io/server/catalogs/key//prices?cursor&per_page' \
--header 'x-auth-token;'
Response Response Example
{
    "entries": [
        {
            "created_at": "2023-12-12T14:45:18Z",
            "listings": {
                "apple_app_store": {
                    "product_id": "receiptgiver2"
                }
            },
            "entity_kind": "asset",
            "entity_name": "Sword",
            "prices": [
                {
                    "amount": "123",
                    "display_amount": "123 GLD",
                    "currency_code": "gld",
                    "currency_name": "Gold",
                    "currency_id": "01HHF7SV5HBWCVCWNNMMTJF1N3"
                }
            ],
            "entity_id": "01HHF7T31GKYBJF85MBGYZA77W",
            "catalog_listing_id": "01HHF7TJMF48CYT9F4EJATEJ95",
            "purchasable": true
        },
        {
            "created_at": "2023-12-18T13:40:12Z",
            "listings": {
                "apple_app_store": {
                    "product_id": "get.a.sword"
                }
            },
            "entity_kind": "asset",
            "entity_name": "Sword",
            "prices": [
                {
                    "amount": "123",
                    "display_amount": "123 GLD",
                    "currency_code": "gld",
                    "currency_name": "Gold",
                    "currency_id": "01HHF7SV5HBWCVCWNNMMTJF1N3"
                }
            ],
            "entity_id": "01HHF7T31GKYBJF85MBGYZA77W",
            "catalog_listing_id": "01HHYJFNVBNMZ0KCXEC77QP04W",
            "purchasable": false
        }
    ],
    "assets_details": [
        {
            "name": "Sword",
            "thumbnail": null,
            "variation_id": null,
            "rental_option_id": null,
            "legacy_id": 298778,
            "id": "01HHF7T31GKYBJF85MBGYZA77W",
            "catalog_listing_id": "01HHF7TJMF48CYT9F4EJATEJ95"
        },
        {
            "name": "Sword",
            "thumbnail": null,
            "variation_id": null,
            "rental_option_id": null,
            "legacy_id": 298778,
            "id": "01HHF7T31GKYBJF85MBGYZA77W",
            "catalog_listing_id": "01HHYJFNVBNMZ0KCXEC77QP04W"
        }
    ],
    "progression_points_details": [],
    "progression_resets_details": [],
    "currency_details": [],
    "catalog": {
        "name": "Some Catalog",
        "key": "some_catalog",
        "id": "01HHF7SNBT2ZENE6B0DYZ8DNQT"
    },
    "pagination": {
        "previous_cursor": null,
        "next_cursor": null,
        "total": 2
    }
}

Request

Authorization
API Key
Add parameter in header
x-auth-token
Example:
x-auth-token: ********************
or
Path Params
key
string 
required
Query Params
cursor
string 
optional
Use the value of next_cursor from the pagination to paginate to the next page.
per_page
number 
optional
How many items you wish to retrieve per page (maximum 50)

Responses

🟢200Success
application/json
Body
entries
array [object {8}] 
required
created_at
string 
required
listings
object 
required
entity_kind
string 
required
entity_name
string 
required
prices
array [object {5}] 
required
entity_id
string 
required
catalog_listing_id
string 
required
purchasable
boolean 
required
assets_details
array [object {7}] 
required
name
string 
required
thumbnail
null 
required
variation_id
null 
required
rental_option_id
null 
required
legacy_id
integer 
required
id
string 
required
catalog_listing_id
string 
required
progression_points_details
array[string]
required
progression_resets_details
array[string]
required
currency_details
array[string]
required
catalog
object 
required
name
string 
required
key
string 
required
id
string 
required
pagination
object 
required
previous_cursor
string 
required
Cursor value for the previous page (if any)
next_cursor
string 
required
Cursor value for the next page (if any)
total
integer 
required
How many total items exist
Previous
List Multisource Metadata
Next
Send Notification to Player
Built with