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

# Detalhar Depósito

> Carrega os detalhes completos de configuração geométrica ou de rota de um Armazém, além da contagem sumária de itens engajados.

### Path

<ParamField path="id" type="string" required>
  UUID da Entidade Depósito.
</ParamField>

### Response

<ResponseExample>
  ```json Response theme={null}
  {
    "id": "e4b6d4e8-8e6d-41da-abdb-8fc358a9e7f1",
    "name": "Armazém Central SP",
    "code": "SP-01",
    "zipCode": "01000-000",
    "address": "Av. Principal, 100",
    "isDefault": true,
    "active": true,
    "itemCount": 15420
  }
  ```
</ResponseExample>


## OpenAPI

````yaml get /warehouses/{id}
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:
  /warehouses/{id}:
    get:
      tags:
        - Warehouses
      summary: Detalhes de um depósito com contagem de itens
      operationId: WarehousesController_findOne
      parameters:
        - name: id
          required: true
          in: path
          schema:
            format: uuid
            type: string
      responses:
        '200':
          description: Detalhes do depósito
        '404':
          description: Depósito não encontrado
      security:
        - bearer: []
components: {}

````