Skip to main content
GET
/
partner
/
balance
/
transactions
List balance transactions
curl --request GET \
  --url https://api.contro.me/v1/partner/balance/transactions \
  --header 'x-contro-api-key: <api-key>'
{
  "data": [
    {
      "id": "btx_abc123",
      "amount": -42.5,
      "type": "card_debit",
      "status": "completed",
      "description": "Card transaction - Coffee Shop",
      "ref": "tx_def456",
      "timestamp": "2026-03-20T14:30:00Z",
      "createdAt": "2026-03-20T14:30:00Z"
    }
  ],
  "total": 123,
  "page": 123,
  "limit": 123
}

Documentation Index

Fetch the complete documentation index at: https://partner-docs.contro.dev/llms.txt

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

Authorizations

x-contro-api-key
string
header
required

Partner API key (sk_live_* for production, sk_test_* for sandbox)

Query Parameters

page
integer
default:1

Page number

Required range: x >= 1
limit
integer
default:20

Number of items per page (1-100)

Required range: 1 <= x <= 100
from
string<date-time>

ISO 8601 start timestamp (inclusive)

to
string<date-time>

ISO 8601 end timestamp (inclusive)

status
enum<string>

Filter by ledger transaction status

Available options:
pending,
action_required,
accepted,
rejected,
failed,
void
Example:

"accepted"

type
string

Filter by ledger transaction type (e.g. card_debit, card_refund, top_up, fee)

Example:

"card_debit"

Response

Balance transactions

data
object[]
required
total
number
required
page
number
required
limit
number
required