> ## 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 por Depósito

> Agrupa as quantidades gerais e resumos de estoque separados por depósito (warehouse).

### Response

<ResponseExample>
  ```json Response theme={null}
  [
    {
      "warehouseId": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
      "warehouseName": "Depósito SP",
      "totalItems": 10500,
      "totalProducts": 200,
      "totalValue": 150000.00
    },
    {
      "warehouseId": "b1b2c3d4-e5f6-7890-1234-567890abcdef",
      "warehouseName": "Depósito RJ",
      "totalItems": 4920,
      "totalProducts": 150,
      "totalValue": 100430.50
    }
  ]
  ```
</ResponseExample>


## OpenAPI

````yaml get /inventory/dashboard/by-warehouse
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/by-warehouse:
    get:
      tags:
        - Inventory Dashboard
      summary: Estoque resumido por depósito
      operationId: InventoryDashboardController_getByWarehouse
      parameters: []
      responses:
        '200':
          description: Estoque agrupado por depósito
      security:
        - bearer: []
components: {}

````