Get detailed information about a specific item, including price adjustments, limits, and promotional prices.
curl --request POST \ --url https://v3.minestorecms.com/api/items/get/{id} \ --header 'Authorization: Bearer <token>'
{ "success": true, "id": 1, "name": "VIP+ Rank", "active": true, "is_subs": false, "original_price": 50, "price": 45, "discount": 5, "image": "/img/items/1.png", "virtual_price": 10, "is_virtual_currency_only": false, "description": "This is an example item description.", "quantityGlobalLimit": 100, "quantityGlobalCurrentLimit": 50, "quantityUserLimit": 10, "quantityUserCurrentLimit": 5, "is_unavailable": false, "in_cart": true }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the item to retrieve
Item details retrieved successfully
The response is of type object.
object