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

# Listar Entradas de Estoque

> Retorna uma lista paginada e filtrável de todas as notas e registros que deram entrada manual, por arquivo ou NF-e.

### Query Parameters

<ParamField query="page" type="number" default="1">Página atual da listagem.</ParamField>
<ParamField query="limit" type="number" default="10">Quantidade de itens por página indicados.</ParamField>
<ParamField query="warehouseId" type="string">Filtra pelo ID do depósito recebedor.</ParamField>
<ParamField query="productId" type="string">Filtra entradas de um produto em específico.</ParamField>
<ParamField query="type" type="string">Tipo de entrada (`MANUAL`, `NFE`, `RESTOCK`, etc).</ParamField>

### Response

<ResponseExample>
  ```json Response theme={null}
  {
    "data": [
      {
        "id": "e4b6d4e8-8e6d-41da-abdb-8fc358a9e7f1",
        "type": "NFE",
        "warehouseId": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
        "notes": "Entrada XML NF-e 123",
        "createdAt": "2024-02-15T12:00:00.000Z",
        "totalItems": 50,
        "totalValue": 1500.00
      }
    ],
    "total": 1,
    "page": 1,
    "limit": 10
  }
  ```
</ResponseExample>


## OpenAPI

````yaml get /inventory/entries
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/entries:
    get:
      tags:
        - Inventory Entries
      summary: Listar entradas de estoque com filtros
      operationId: InventoryEntryController_listEntries
      parameters:
        - name: warehouseId
          required: false
          in: query
          schema:
            type: string
        - name: productId
          required: false
          in: query
          schema:
            type: string
        - name: sourceType
          required: false
          in: query
          schema:
            type: string
        - name: cursor
          required: false
          in: query
          schema:
            type: number
        - name: limit
          required: false
          in: query
          schema:
            type: number
      responses:
        '200':
          description: Lista paginada de entradas
      security:
        - bearer: []
components: {}

````