- 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 item's restock history
GET
/items/{name}/restock
Request
Path Params
name
string
required
Example:
negg
Responses
🟢200OK
application/json
Body
array of:
recent
array [object {5}]
optional
internal_id
integer
optional
item
object (ItemData)
optional
Example:
{"internal_id":71,"image":"https://images.neopets.com/items/negg.gif","image_id":"negg","item_id":8,"rarity":45,"name":"Negg","specialType":"trading","isNC":false,"type":"np","estVal":4371,"weight":3,"description":"A Negg is a Neopian delicacy. *** WORTH 1 NEGG POINT AT THE NEGGERY ***","status":"active","category":"Food","isNeohome":false,"isWearable":false,"color":{"hsv":[28.643216080402,98.02955665024629,79.6078431372549],"rgb":[203,99,4],"lab":[53.63108729347468,36.90719903461171,61.33641181173597],"hex":"#CB6304","type":"vibrant","population":58},"findAt":{"safetyDeposit":"https://www.neopets.com/safetydeposit.phtml?obj_name=Negg&category=0","shopWizard":"https://www.neopets.com/shops/wizard.phtml?string=Negg","auction":"https://www.neopets.com/genie.phtml?type=process_genie&criteria=exact&auctiongenie=Negg","trading":"https://www.neopets.com/island/tradingpost.phtml?type=browse&criteria=item_exact&search_string=Negg","closet":null,"restockShop":"https://www.neopets.com/objects.phtml?type=shop&obj_type=1","dti":null},"isMissingInfo":false,"price":{"value":22450,"addedAt":"2023-03-23T06:32:55.181Z","inflated":false},"comment":null}
stock
integer
optional
price
integer
optional
addedAt
string <date-time>
optional
appearances
integer
optional
totalStock
integer
optional
period
string
optional
Example
[
{
"recent": [
{
"internal_id": 0,
"item": {
"internal_id": 71,
"image": "https://images.neopets.com/items/negg.gif",
"image_id": "negg",
"item_id": 8,
"rarity": 45,
"name": "Negg",
"specialType": "trading",
"isNC": false,
"type": "np",
"estVal": 4371,
"weight": 3,
"description": "A Negg is a Neopian delicacy. *** WORTH 1 NEGG POINT AT THE NEGGERY ***",
"status": "active",
"category": "Food",
"isNeohome": false,
"isWearable": false,
"color": {
"hsv": [
28.643216080402,
98.02955665024629,
79.6078431372549
],
"rgb": [
203,
99,
4
],
"lab": [
53.63108729347468,
36.90719903461171,
61.33641181173597
],
"hex": "#CB6304",
"type": "vibrant",
"population": 58
},
"findAt": {
"safetyDeposit": "https://www.neopets.com/safetydeposit.phtml?obj_name=Negg&category=0",
"shopWizard": "https://www.neopets.com/shops/wizard.phtml?string=Negg",
"auction": "https://www.neopets.com/genie.phtml?type=process_genie&criteria=exact&auctiongenie=Negg",
"trading": "https://www.neopets.com/island/tradingpost.phtml?type=browse&criteria=item_exact&search_string=Negg",
"closet": null,
"restockShop": "https://www.neopets.com/objects.phtml?type=shop&obj_type=1",
"dti": null
},
"isMissingInfo": false,
"price": {
"value": 22450,
"addedAt": "2023-03-23T06:32:55.181Z",
"inflated": false
},
"comment": null
},
"stock": 0,
"price": 0,
"addedAt": "2019-08-24T14:15:22Z"
}
],
"appearances": 0,
"totalStock": 0,
"period": "string"
}
]
Modified at 2025-03-02 21:39:05