Skip to main content
GET
/
v1
/
transactions
cURL
curl --request GET \
  --url https://api.example.com/v1/transactions \
  --header 'x-access-id: <api-key>'
{
  "transactions": [
    {
      "amount_in_cents": 123,
      "category": "credit",
      "created_at": "2023-11-07T05:31:56Z",
      "description": "<string>",
      "details": {
        "type": "Pix",
        "value": {
          "pix_type": "Manual",
          "receiver": {
            "account_number": "<string>",
            "account_type": "payment_account",
            "bank": "<string>",
            "bank_code": "<string>",
            "document": "<string>",
            "name": "<string>"
          },
          "sender": {
            "account_number": "<string>",
            "account_type": "payment_account",
            "bank": "<string>",
            "bank_code": "<string>",
            "document": "<string>",
            "name": "<string>"
          },
          "message": "<string>",
          "pix_key": "<string>"
        }
      },
      "external_id": "<string>",
      "id": 123,
      "status": "initial",
      "type": "<string>",
      "completed_at": "2023-11-07T05:31:56Z",
      "counterparty": "<string>"
    }
  ],
  "next_cursor": "<string>"
}

Authorizations

x-access-id
string
header
required

UUID of the service account (e.g., 550e8400-e29b-41d4-a716-446655440000)

Response

Transactions retrieved successfully

transactions
object[]
required
next_cursor
string | null