> ## 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 Trabalhos de Importação (Jobs)

> Retorna a lista de Trabalhos (Jobs) de Importação de Notas Fiscais, com paginação básica.

### 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 na listagem.
</ParamField>

### Response

<ResponseExample>
  ```json Response theme={null}
  [
    {
      "id": "b6a8a729-2de8-466d-9271-bfbd71337de7",
      "filename": "nfe_venda_123.xml",
      "status": "pending",
      "progress": 0,
      "totalItems": 15,
      "validCount": 10,
      "invalidCount": 5,
      "errorDetails": null,
      "createdAt": "2024-01-01T12:00:00.000Z"
    }
  ]
  ```
</ResponseExample>


## OpenAPI

````yaml get /import/jobs
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:
  /import/jobs:
    get:
      tags:
        - Import
      operationId: ImportController_listJobs
      parameters:
        - name: page
          required: true
          in: query
          schema:
            type: string
        - name: limit
          required: true
          in: query
          schema:
            type: string
      responses:
        '200':
          description: ''

````