Skip to main content
GET
/
pix
/
v1
/
transactions
Listar Transações
curl --request GET \
  --url https://api.pagou.ai/pix/v1/transactions \
  --header 'apiKey: <api-key>'
{
  "items": [
    {
      "id": "cb3e7f07-e7fd-4785-92c2-1abc281cd46e",
      "value": 0.5,
      "fee": 0.01,
      "netValue": 0.49,
      "operationStatus": "ERROR",
      "endToEnd": "E228964312025060614779nsL34pvQ9mJ",
      "externalId": null,
      "paymentSettlementDate": "2025-06-06T14:42:54.215Z",
      "createdAt": "2025-06-06T14:12:50.598Z",
      "updatedAt": "2025-06-06T14:18:51.882Z"
    }
  ],
  "total": 15,
  "totalPages": 3
}

Authorizations

apiKey
string
header
required

Query Parameters

period
integer
default:15
required

Period in number of days. Compares current date minus the specified days. Default is 15. Maximum is 90.

Required range: 1 <= x <= 90
Example:

15

page
integer
default:1

Page number for pagination

Required range: x >= 1
Example:

1

limit
integer
default:10

Number of transactions per page. Default is 10. Maximum is 50.

Required range: 1 <= x <= 50
Example:

10

order
enum<string>
default:DESC

Transaction ordering based on creation date. Default is DESC (descending).

Available options:
ASC,
DESC
Example:

"DESC"

Response

Transactions retrieved successfully

items
object[]

List of transactions

total
integer

Total number of transactions matching the criteria

Example:

15

totalPages
integer

Total number of pages available

Example:

3

I