> ## Documentation Index
> Fetch the complete documentation index at: https://docs.minestorecms.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Item (Guest)

> Fetch details of a specific item for guests, including price, discount, availability, and limits.



## OpenAPI

````yaml POST /items/get/guest/{id}
openapi: 3.0.0
info:
  title: MineStoreCMS REST API
  description: Documentation for MineStoreCMS Frontend REST API.
  version: 3.8.7
servers:
  - url: https://v3.minestorecms.com/api
    description: Example URL of Demo Server
security: []
tags: []
paths:
  /items/get/guest/{id}:
    post:
      tags:
        - items
      summary: Retrieve item details for guests
      description: >-
        Fetch details of a specific item for guests, including price, discount,
        availability, and limits.
      parameters:
        - name: id
          in: path
          required: true
          description: The ID of the item to retrieve
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    description: Indicates whether the item retrieval was successful
                  name:
                    type: string
                    description: The name of the item
                  active:
                    type: boolean
                    description: Indicates if the item is active
                  is_subs:
                    type: boolean
                    description: Indicates if the item is a subscription package
                  image:
                    type: string
                    description: URL of the item image
                  original_price:
                    type: number
                    description: The original price of the item
                  price:
                    type: number
                    description: The final price of the item after discount
                  discount:
                    type: number
                    description: The discount applied to the item
                  quantityGlobalLimit:
                    type: number
                    description: The global quantity limit for the item
                  quantityGlobalCurrentLimit:
                    type: number
                    description: The current global quantity limit used
                  quantityUserLimit:
                    type: string
                    description: The quantity limit per user (disabled for guests)
                  quantityUserCurrentLimit:
                    type: integer
                    description: >-
                      The current quantity used by the user (disabled for
                      guests)
                  virtual_price:
                    type: number
                    description: The price of the item in virtual currency
                  is_virtual_currency_only:
                    type: boolean
                    description: >-
                      Indicates if the item can only be purchased with virtual
                      currency
                  id:
                    type: integer
                    description: The unique identifier of the item
                  description:
                    type: string
                    description: The description of the item (contains HTML code).
                  in_cart:
                    type: boolean
                    description: >-
                      Indicates if the item is already in the cart (dynamically
                      updated)
                  is_unavailable:
                    type: boolean
                    description: >-
                      Indicates if the item is unavailable for purchase (per
                      user)
                example:
                  success: true
                  name: VIP+ Rank
                  active: true
                  is_subs: false
                  image: /img/items/1.png
                  original_price: 100
                  price: 90
                  discount: 10
                  quantityGlobalLimit: 50
                  quantityGlobalCurrentLimit: 30
                  quantityUserLimit: null
                  quantityUserCurrentLimit: null
                  virtual_price: 1000
                  is_virtual_currency_only: false
                  id: 1
                  description: <p>This is an example description for a VIP+ Rank.</p>
                  in_cart: false
                  is_unavailable: false
        '401':
          description: (Unauthorized) Invalid or missing Access Token
      deprecated: false

````