Skip to main content
GET
/
v1
/
transactions
List Statement
curl --request GET \
  --url https://conta-public-api.kiwify.com/v1/transactions \
  --header 'X-PoP-Challenge: <api-key>' \
  --header 'X-PoP-Format: <api-key>' \
  --header 'X-PoP-Signature: <api-key>' \
  --header 'x-access-id: <api-key>'
{
  "transactions": [
    {
      "amount_in_cents": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "description": "<string>",
      "details": {
        "value": {
          "receiver": {
            "account_number": "<string>",
            "bank": "<string>",
            "bank_code": "<string>",
            "document": "<string>",
            "name": "<string>"
          },
          "sender": {
            "account_number": "<string>",
            "bank": "<string>",
            "bank_code": "<string>",
            "document": "<string>",
            "name": "<string>"
          },
          "message": "<string>",
          "pix_key": "<string>"
        }
      },
      "end_to_end_id": "E323070002024011012345612345678901234",
      "id": 123,
      "type": "<string>",
      "completed_at": "2023-11-07T05:31:56Z",
      "counterparty": "<string>",
      "med": {
        "can_be_disputed": true,
        "incoming_infraction": {
          "created_at": "2023-11-07T05:31:56Z",
          "end_to_end_id": "<string>",
          "id": 123,
          "original_amount_in_cents": 123,
          "original_transaction": {
            "created_at": "2023-11-07T05:31:56Z",
            "counterparty_name": "<string>"
          },
          "refunded_amount_in_cents": 123,
          "transaction_id": 123,
          "deadline": "2023-11-07T05:31:56Z",
          "funds_recovery": {
            "external_id": "<string>",
            "closed_at": "2023-11-07T05:31:56Z",
            "contact_email": "<string>",
            "contact_phone": "<string>",
            "external_created_at": "2023-11-07T05:31:56Z",
            "external_last_modified_at": "2023-11-07T05:31:56Z",
            "report_details": "<string>",
            "reporter_participant": "<string>",
            "root_transaction_id": "<string>"
          }
        },
        "outgoing_dispute": {
          "created_at": "2023-11-07T05:31:56Z",
          "end_to_end_id": "<string>",
          "id": 123,
          "original_amount_in_cents": 123,
          "original_transaction": {
            "created_at": "2023-11-07T05:31:56Z",
            "counterparty_name": "<string>"
          },
          "refunded_amount_in_cents": 123,
          "transaction_id": 123,
          "cancellation_requested_at": "2023-11-07T05:31:56Z",
          "deadline": "2023-11-07T05:31:56Z",
          "funds_recovery": {
            "external_id": "<string>",
            "closed_at": "2023-11-07T05:31:56Z",
            "contact_email": "<string>",
            "contact_phone": "<string>",
            "external_created_at": "2023-11-07T05:31:56Z",
            "external_last_modified_at": "2023-11-07T05:31:56Z",
            "report_details": "<string>",
            "reporter_participant": "<string>",
            "root_transaction_id": "<string>"
          }
        }
      }
    }
  ],
  "next_cursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.kiwify.com.br/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-access-id
string
header
required

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

X-PoP-Challenge
string
header
required

Unix timestamp in milliseconds (e.g., 1704636800000). Must be within 5 minutes of server time.

X-PoP-Format
string
header
required

Must be 'service-account' for service account authentication

X-PoP-Signature
string
header
required

EdDSA signature of the request in base64 format. Signs: uri:method:body:timestamp

Response

Transactions retrieved successfully

transactions
object[]
required
next_cursor
string | null