Kobble
  1. Transactions
Kobble
  • Introduction
  • API Fundamentals
    • Idempotency
    • Rate Limits
  • Authorization
    • Authorization
    • Get access token
      POST
  • Beneficiaries
    • List all beneficiaries
      GET
    • Get beneficiary by ID
      GET
    • Create beneficiary
      POST
    • Update beneficiary
      PUT
  • Cards
    • Cards API
    • Get all cards
      GET
    • Create a new card
      POST
    • Get card by ID
      GET
    • Update card status
      PATCH
    • Replace or renew card
      POST
    • Generate card secret
      POST
  • Card Programs
    • Card Programs API
    • Get all programs
      GET
    • Create a new program
      POST
    • Get program by ID
      GET
  • Clients
    • Clients API
    • Get all clients
    • Get client by ID
    • Create a new client
    • Update client status
  • Endusers
    • Endusers API
    • Get all endusers
    • Create a new enduser
    • Get enduser by ID
  • Transactions
    • Transactions API
    • Get all transactions
      GET
    • Create a transaction
      POST
    • Get transaction by ID
      GET
    • Create manual credit transaction
      POST
    • Create manual debit transaction
      POST
  • Wallets
    • Wallets API
    • Get all wallets
    • Create a new wallet
    • Get wallet by ID
    • Update wallet
  • Relays
    • Relays API
    • Create subscription
  • Webhooks
    • Webhooks API
    • Webhook Signature Verification
    • Get all webhooks
    • Create a webhook
    • Delete a webhook
  1. Transactions

Get all transactions

GET
/customers/v1/transactions
Retrieve a list of transactions, optionally filtered by wallet ID, date range, and other parameters.

Request

Query Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/customers/v1/transactions?wallet&offset&limit&order&from&to' \
--header 'Authorization: Bearer {{access_token}}'

Responses

🟢200OK
application/json
Headers

Body

Example
[
    {
        "id": "5463d396-3f1a-4e82-96f7-37006405e509",
        "amount": 1,
        "asset": "AUD",
        "asset_class": "CURRENCY",
        "created_at": "2025-01-14T16:42:22.101Z",
        "external_id": "111",
        "from": "47d152eb-2076-4b0c-a87a-bce74e43f4f2",
        "payment_type": "INTER_WALLET",
        "reference": "consectetur do",
        "status": "DECLINED",
        "to": "a5a7193b-fc96-4d39-82b8-80c5d0969e4d",
        "type": "SETTLEMENT",
        "updated_at": "2025-01-14T16:42:22.103Z",
        "metadata": {},
        "info": null
    }
]
Modified at 2025-01-22 15:45:12
Previous
Transactions API
Next
Create a transaction
Built with