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

# Itens com Estoque Baixo

> Apresenta a listagem estrita de registros cujo nível de volume decaiu para ser reposto.

### Query Parameters

<ParamField query="limit" type="number" default="10">Limite máximo listado.</ParamField>

### Response

<ResponseExample>
  ```json Response theme={null}
  [
    {
      "productId": "cffbca85-da89-4b2a-aecf-31422abcb34a",
      "sku": "PROD-123",
      "name": "Cabo USB-C",
      "availableQuantity": 5,
      "minQuantity": 10
    }
  ]
  ```
</ResponseExample>


## OpenAPI

````yaml get /inventory/low-stock
openapi: 3.0.0
info:
  title: Hub Marketplace API
  description: API for managing marketplace listings and keys
  version: '1.0'
  contact: {}
servers: []
security: []
tags:
  - name: listings
    description: ''
paths:
  /inventory/low-stock:
    get:
      tags:
        - Inventory
      summary: Produtos com estoque abaixo do mínimo
      operationId: InventoryController_lowStock
      parameters:
        - name: limit
          required: false
          in: query
          description: Limite de resultados
          schema:
            type: number
      responses:
        '200':
          description: Lista de produtos com estoque baixo
      security:
        - bearer: []
components: {}

````