- Getting Started
- Slugs
- Widget
- Widget Tabs Exemple
- Item
- Get latest itemsGET
- Get a itemGET
- Get item's price historyGET
- Get item's auction historyGET
- Get item's restock historyGET
- Get item's trade historyGET
- Get items color paletteGET
- Get item's color palettePOST
- Get many itemsGET
- Get many itemsPOST
- Get Item Drops DataGET
- Get Dyeworks VariantsGET
- Get MME PathsGET
- Get Item EffectsGET
- Get Cooking Pot RecipesGET
- Search
- Lists
- Misc
Get List Info
GET
/lists/{username}/{list_id_or_slug}
Request
Path Params
username
string
required
Example:
official
list_id_or_slug
string
required
Example:
weekly-quest-prize
Responses
🟢200Success
application/json
Body
Represents a UserList
internal_id
number
optional
name
string
optional
description
string | null
optional
owner
object
optional
id
string
optional
username
string | null
optional
neopetsUser
string | null
optional
lastSeen
string
optional
coverURL
string | null
optional
official
boolean
optional
purpose
enum<string>
optional
Allowed values:
seekingtradingnone
Default:
none
visibility
enum<string>
optional
Allowed values:
publicprivateunlisted
Default:
public
colorHex
string
optional
Example:
#fff000
sortBy
string
optional
Default:
name
sortDir
enum<string>
optional
Allowed values:
ascdesc
Default:
asc
order
number
optional
createdAt
string
optional
updatedAt
string
optional
itemCount
number
optional
itemInfo
array[object (ListItemInfo) {10}]
optional
internal_id
number
optional
list_id
number
optional
item_iid
number
optional
addedAt
string
optional
updatedAt
string
optional
amount
number
optional
capValue
number | null
optional
imported
string
optional
order
number | null
optional
isHighlight
boolean
optional
user_id
string
deprecated
user_username
string | null
deprecated
user_neouser
string
deprecated
Example
[
{
"internal_id": 26,
"name": "Tarla Main Prizes",
"description": "Main items given by Tarla Non-Toolbar Treasures",
"coverURL": "https://images.neopets.com/games/tradingcards/369.gif",
"colorHex": "#c63956",
"purpose": "none",
"official": true,
"visibility": "public",
"user_id": "Ty0G4IOIm4dr3IYJpMx8bIFMs433",
"user_username": "temp_user",
"user_neouser": "temp_username",
"owner": {
"id": "Ty0G4IOIm4dr3IYJpMx8bIFMs433",
"username": "temp_user",
"neopetsUser": "temp_username",
"lastSeen": "2023-04-01T22:00:00.000Z"
},
"createdAt": "2023-04-02T18:57:27.227Z",
"updatedAt": "2023-04-02T21:01:14.834Z",
"sortBy": "price",
"sortDir": "desc",
"order": 2,
"itemCount": 2,
"itemInfo": [
{
"internal_id": 1507,
"list_id": 26,
"item_iid": 25,
"addedAt": "2023-04-02T19:06:05.851Z",
"updatedAt": "2023-04-02T19:06:05.851Z",
"amount": 1,
"capValue": null,
"imported": false,
"order": null,
"isHighlight": false
},
{
"internal_id": 1429,
"list_id": 26,
"item_iid": 103,
"addedAt": "2023-04-02T18:57:57.819Z",
"updatedAt": "2023-04-02T18:57:57.819Z",
"amount": 1,
"capValue": null,
"imported": false,
"order": null,
"isHighlight": false
}
]
}
]
Modified at 2025-03-02 20:27:57