> ## 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.

# Estoque Baixo

> Retorna a lista de produtos classificados com alerta de estoque baixo (abaixo do limite configurado).

### Query Parameters

<ParamField query="limit" type="number" default="20">
  Quantidade limite de registros a serem retornados.
</ParamField>

<ParamField query="warehouseId" type="string">
  Opcional. UUID que filtra os resultados de um depósito específico.
</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/dashboard/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/dashboard/low-stock:
    get:
      tags:
        - Inventory Dashboard
      summary: Produtos abaixo do estoque mínimo
      operationId: InventoryDashboardController_getLowStock
      parameters:
        - name: warehouseId
          required: false
          in: query
          schema:
            type: string
        - name: limit
          required: false
          in: query
          schema:
            type: number
      responses:
        '200':
          description: Lista de itens com estoque baixo
      security:
        - bearer: []
components: {}

````