Skip to main content
GET
/
v3
/
balance_transaction
cURL
curl --request GET \
  --url https://service-sandbox.tazapay.com/v3/balance_transaction \
  --header 'Authorization: Basic <encoded-value>'
{
  "status": "success",
  "message": "",
  "data": {
    "has_more": true,
    "object": "list",
    "results": [
      {
        "amount": 89,
        "created_at": "2025-10-22T10:19:51.542Z",
        "currency": "USD",
        "description": "<pot_id>",
        "fee_details": [],
        "fx_conversions": [],
        "id": "<btr_id>",
        "metadata": {},
        "net": {
          "amount": 89,
          "currency": "USD"
        },
        "object": "balance_transaction",
        "operation_type": "credit",
        "source": "<btr_id>",
        "type": "payout_reversal"
      },
      {
        "amount": -88,
        "created_at": "2025-10-16T10:01:10.924Z",
        "currency": "USD",
        "description": "",
        "fee_details": [
          {
            "amount": -1,
            "currency": "USD",
            "type": "variable_fee"
          }
        ],
        "fx_conversions": [],
        "id": "<btr_id>",
        "metadata": {},
        "net": {
          "amount": -89,
          "currency": "USD"
        },
        "object": "balance_transaction",
        "operation_type": "debit",
        "source": "pot_id",
        "type": "payout"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Query Parameters

starting_after
string
default:""

A cursor for use in pagination. Takes balance transaction object ID as input

ending_before
string
default:""

A cursor for use in pagination. Takes balance transaction object ID as input

limit
integer

The number of objects to be fetched, by default 10, can be from 1 to 100

created.gt
string<date-time>

Returns balance transactions created after this timestamp (greater than)

created.gte
string<date-time>

Returns balance transactions created on or after this timestamp (greater than or equal to)

created.lt
string<date-time>

Returns balance transactions created before this timestamp (less than)

created.lte
string<date-time>

Returns balance transactions created on or before this timestamp (less than or equal to)

Response

200 - application/json
status
string
Example:

"success"

message
string
Example:

""

data
object