Listar NFCe
GET /nfce
Lista todas as NFCe emitidas com paginação e filtros.
Autenticação
x-api-key: {apiKey}
Query Parameters
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|---|---|---|
page | number | Não | Página (padrão: 1) |
limit | number | Não | Itens por página (padrão: 20) |
status | string | Não | CREATED, AUTHORIZED, CANCELED, ERROR |
Exemplo
curl -X GET "https://api.engineapi.com.br/nfce?status=AUTHORIZED&page=1&limit=10" \
-H "x-api-key: sua-api-key"
Resposta (200)
{
"data": [
{
"id": "uuid",
"number": 1,
"series": 1,
"accessKey": "35260212345678000195650010000000011234567890",
"status": "AUTHORIZED",
"amount": 89.9,
"destName": "CONSUMIDOR FINAL",
"createdAt": "2026-02-10T10:00:00Z"
}
],
"total": 50,
"page": 1,
"limit": 10
}