Get Assets List
GET
https://api.lootlocker.com/game/v1/assets/list
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.lootlocker.com/game/v1/assets/list?count=50&order_by=created_at&order_direction=ASC' \
--header 'x-session-token: ' \
--header 'x-session-token;'
Response Response Example
200 - Success
{
"success": true,
"assets": [
{
"id": 62,
"uuid": "68120b37-398a-489c-98ac-abbc9ff81560",
"name": "Drop Table",
"active": true,
"purchasable": false,
"price": 0,
"sales_price": null,
"display_price": "0",
"context": "Drop Table",
"context_id": 426,
"character_classes": [],
"unlocks_context": null,
"detachable": false,
"updated": "Thu, 13 Jun 2024 13:09:47 +0000",
"marked_new": "Thu, 13 Jun 2024 11:59:46 +0000",
"default_variation_id": 0,
"default_loadouts": {
"Test": false,
"Test 2": false
},
"description": "",
"links": null,
"storage": [],
"rarity": null,
"popular": false,
"popularity_score": 0,
"package_contents": null,
"unique_instance": false,
"external_identifiers": null,
"rental_options": null,
"filters": [],
"files": [],
"data_entities": [],
"hero_equip_exceptions": [],
"asset_candidate": null,
"drop_table_max_picks": 0,
"featured": false,
"context_locked": false,
"initially_purchasable": false
},
{
"id": 64,
"uuid": "0b8daa57-5e38-4847-8d14-a3c7a195e10c",
"name": "Test 1",
"active": true,
"purchasable": false,
"price": 0,
"sales_price": null,
"display_price": "0",
"context": "Customization",
"context_id": 424,
"character_classes": [
72
],
"unlocks_context": null,
"detachable": false,
"updated": "Thu, 13 Jun 2024 12:03:37 +0000",
"marked_new": "Thu, 13 Jun 2024 12:03:33 +0000",
"default_variation_id": 0,
"default_loadouts": {
"Test": false,
"Test 2": false
},
"description": "",
"links": null,
"storage": [],
"rarity": null,
"popular": false,
"popularity_score": 0,
"package_contents": null,
"unique_instance": false,
"external_identifiers": null,
"rental_options": null,
"filters": [],
"files": [],
"data_entities": [],
"hero_equip_exceptions": [],
"asset_candidate": null,
"drop_table_max_picks": null,
"featured": false,
"context_locked": false,
"initially_purchasable": false
},
{
"id": 66,
"uuid": "53926c59-8d50-4be9-a0cf-cde533920002",
"name": "Test 2",
"active": true,
"purchasable": false,
"price": 0,
"sales_price": null,
"display_price": "0",
"context": "Customization",
"context_id": 424,
"character_classes": [
72
],
"unlocks_context": null,
"detachable": false,
"updated": "Thu, 13 Jun 2024 12:03:49 +0000",
"marked_new": "Thu, 13 Jun 2024 12:03:47 +0000",
"default_variation_id": 0,
"default_loadouts": {
"Test": false,
"Test 2": false
},
"description": "",
"links": null,
"storage": [],
"rarity": null,
"popular": false,
"popularity_score": 0,
"package_contents": null,
"unique_instance": false,
"external_identifiers": null,
"rental_options": null,
"filters": [],
"files": [],
"data_entities": [],
"hero_equip_exceptions": [],
"asset_candidate": null,
"drop_table_max_picks": null,
"featured": false,
"context_locked": false,
"initially_purchasable": false
}
]
}
Request
Query Params
count
integerÂ
optional
Example:
50
after
integerÂ
optional
Example:
4
search
stringÂ
optional
Example:
my asset
include_ugc
booleanÂ
optional
ugc_creator_player_id
is passed.Example:
false
ugc_creator_player_id
integerÂ
optional
Example:
5
filter
stringÂ
optional
!purchasable
, purchasable
, !popular
, popular
, !rentable
, rentable
Example:
!purchasable
asset_filters
stringÂ
optional
Example:
key1=value2;key2=value2
context_id
integerÂ
optional
Example:
6
order_by
stringÂ
required
name
, created_at
, updated_at
, and id
. Defaults to id
.Example:
created_at
order_direction
stringÂ
required
ASC
for ascending order, and DESC
for descending order. Defaults to ASC
.Example:
ASC
Header Params
x-session-token
stringÂ
required
Example:
{{session_token}}
Responses
Modified at 2025-03-26 15:45:57