> ## Documentation Index
> Fetch the complete documentation index at: https://redo-44af351d-docs-returns-email-query-param.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Inventory Item

> Get a single in-stock inventory item by ID.



## OpenAPI

````yaml /api-schema/openapi.yaml get /stores/{storeId}/inventory-items/{inventoryItemId}
openapi: 3.1.0
info:
  contact:
    email: engineering-admin@getredo.com
    name: Redo Engineering
  description: |
    ## Endpoints

    Endpoints are authenticated using the Bearer authorization scheme, using the
    REDO_API_SECRET.

    ```txt
    GET /v2.2/resource HTTP/1.1
    Authorization: Bearer 77bb7598b7a972475cc7c7e171ec33af
    Host: api.getredo.com
    ```

    ## Webhooks

    Webhooks are authenticated using the Bearer authorization scheme, using
    a secret supplied by the subscriber.

    ```txt
    POST /events HTTP/1.1
    Authorization: Bearer subscriberauth123
    Host: subscriber.example.com
    ```

    Webhook events are delivered in order for each individual subject (e.g.
    return).

    If the response is not a 2xx status code, the event will be retried multiple
    times before discarding it.
  title: Redo API
  version: 2.2.1
servers:
  - url: https://api.getredo.com/v2.2
security: []
tags:
  - name: Checkout Buttons
  - name: Coverage Info
  - name: Coverage Products
  - name: Custom Events
  - name: Customer Portal
  - name: Customer Subscriptions
  - name: Customers
  - name: Inbound Shipments
  - name: Inventory Items
  - name: Inventory Levels
  - name: Invoices
  - name: Merchant Admin
  - name: Orders
  - name: Products
  - name: Returns
  - name: Storefront
  - name: Webhooks
paths:
  /stores/{storeId}/inventory-items/{inventoryItemId}:
    summary: Inventory Item
    description: Single inventory item.
    parameters:
      - $ref: '#/components/parameters/store-id.param'
      - $ref: '#/components/parameters/inventory-item-id.param'
    get:
      tags:
        - Inventory Items
      summary: Get Inventory Item
      description: Get a single in-stock inventory item by ID.
      operationId: Inventory item get
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  inventory_item:
                    $ref: '#/components/schemas/inventory-item-list.schema'
                required:
                  - inventory_item
                type: object
          description: Success
        '404':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/error.schema'
          description: Inventory item not found
        default:
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/error.schema'
          description: Error
      security:
        - Bearer: []
components:
  parameters:
    store-id.param:
      description: Store ID
      in: path
      name: storeId
      required: true
      schema:
        example: 64e5a8a1af49a89df37e4ee7
        type: string
    inventory-item-id.param:
      description: Inventory item ID
      in: path
      name: inventoryItemId
      required: true
      schema:
        example: ii_5f8e1a2b3c
        type: string
  schemas:
    inventory-item-list.schema:
      description: Inventory item list entry.
      properties:
        id:
          description: Prefixed inventory item ID (`ii_...`).
          example: ii_5f8e1a2b3c
          type: string
        sku:
          description: Stock keeping unit from the linked product.
          example: TSH-BLK-M
          nullable: true
          type: string
        name:
          description: Product title including variant options.
          example: Classic Cotton T-Shirt - Black / M
          nullable: true
          type: string
        kind:
          description: Inventory item kind.
          enum:
            - PRODUCT
            - RETURN
            - UNDECLARED
            - UNKNOWN
          example: PRODUCT
          type: string
        quantity:
          description: >-
            On-hand quantity. When `location_id` is supplied as a query filter,
            this is the quantity at that location; otherwise it is the total
            across all locations.
          example: 250
          type: integer
        locations:
          description: Per-location quantities for this inventory item.
          items:
            $ref: '#/components/schemas/inventory-item-location.schema'
          type: array
        created_at:
          description: Creation timestamp (ISO 8601).
          example: '2025-11-01T10:00:00.000Z'
          format: date-time
          type: string
        updated_at:
          description: Last updated timestamp (ISO 8601).
          example: '2026-03-31T18:45:00.000Z'
          format: date-time
          type: string
      required:
        - id
        - sku
        - name
        - kind
        - quantity
        - locations
        - created_at
        - updated_at
      title: Inventory Item
      type: object
    error.schema:
      description: >-
        Problem details. See [RFC 7807 Section
        3](https://datatracker.ietf.org/doc/html/rfc7807#section-3).
      properties:
        detail:
          description: Human-readable description of the problem.
          title: Detail
          type: string
        instance:
          description: A URI reference that identifies this problem.
          format: uri-reference
          type: string
        title:
          description: Human-readable summary of the problem type.
          title: Title
          type: string
        type:
          default: about:blank
          description: A URI reference that identifies the problem type.
          format: uri-reference
          type: string
      title: Problem details
      type: object
    inventory-item-location.schema:
      description: Per-location quantity for an inventory item.
      properties:
        location_id:
          description: Prefixed location ID (`loc_...`).
          example: loc_4d8e1a2b3c
          type: string
        location_name:
          description: Location name.
          example: East Coast Warehouse
          type: string
        quantity:
          description: On-hand quantity at this location.
          example: 120
          type: integer
      required:
        - location_id
        - location_name
        - quantity
      title: Inventory Item Location
      type: object
  securitySchemes:
    Bearer:
      scheme: bearer
      type: http

````