Skip to main content
GET
/
api
/
v2
/
balance
Get the merchant's balance summary in USD
curl --request GET \
  --url https://api.pawpayments.com/api/v2/balance \
  --header 'x-api-key: <api-key>'
{
  "ok": true,
  "result": {
    "available": 1234.56,
    "total_income": 5678.9,
    "total_payouts": 4444.34
  }
}

Documentation Index

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

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

Authorizations

x-api-key
string
header
required

Response

OK

ok
boolean
required
result
Balance · object
required
Example:
{
  "available": 1234.56,
  "total_income": 5678.9,
  "total_payouts": 4444.34
}