Skip to main content
GET
/
v1
/
balance
Get balance
curl --request GET \
  --url https://api.plexospay.com/v1/balance \
  --header 'Authorization: Bearer <token>'
{
  "available": {
    "amount": "<string>",
    "currency": "<string>",
    "amountFormatted": "<string>"
  },
  "pending": {
    "amount": "<string>",
    "currency": "<string>",
    "amountFormatted": "<string>"
  },
  "payout": {
    "amount": "<string>",
    "currency": "<string>",
    "amountFormatted": "<string>"
  }
}
Returns the merchant’s current balances:
  • Available — Funds available for payout
  • Pending — Funds from recent payments not yet settled
  • Payout — Funds currently being transferred to your bank account

Authorizations

Authorization
string
header
required

API key starting with sk_live_ or sk_test_

Response

200 - application/json

Balance details

available
object
pending
object
payout
object