---
title: "Listar transacoes"
method: GET
path: "/v1/transactions"
tags: ["Transacoes"]
---

# Listar transacoes

`GET /v1/transactions`

Retorna uma lista paginada de transacoes com suporte a filtros.

## Query parameters

- `page` integer
- `pageSize` integer
- `status` 'Pending' | 'Completed' | 'Expired' | 'Failed' | 'Refunded'
- `method` 'Pix' | 'CreditCard' | 'Boleto'
- `externalId` string
- `customerId` string, uuid
- `startDate` string, date-time
- `endDate` string, date-time

## Response `200`

Lista de transacoes

- ListTransactionsResponse
  - `data` PaginatedTransactions, nullable
    - `items` TransactionListItem[]
      - `id` string, uuid
      - `externalId` string, nullable
      - `method` string
      - `amount` integer
      - `fee` integer
      - `netAmount` integer
      - `currency` string
      - `status` string
      - `description` string, nullable
      - `environment` string
      - `expiresAt` string, date-time, nullable
      - `completedAt` string, date-time, nullable
      - `createdAt` string, date-time
      - `customerId` string, uuid, nullable
      - `customer` TransactionCustomer, nullable
        - `id` string, uuid
        - `name` string
        - `email` string
        - `document` string, nullable
    - `page` integer
    - `pageSize` integer
    - `totalItems` integer
    - `totalPages` integer
    - `hasNextPage` boolean
    - `hasPreviousPage` boolean
  - `message` string, nullable
  - `error` ApiErrorResponse, nullable
    - `message` string — Mensagem de erro
    - `code` string — Codigo do erro

## Other responses

- `401` — Nao autorizado

---

[API](https://skmtc.net/safefy-pay/apis/safefy-pix-gateway.md) · [All operations](https://skmtc.net/safefy-pay/apis/safefy-pix-gateway/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/safefy-pay/safefy-pix-gateway/revisions/57157be53ccc/schema)
