The Payment Company Logo

Payout

Wallet Details API

Reference documentation for the Get Wallet Details API. This endpoint retrieves user wallet information by using the provided secret key and returns wallet ID, currency, balance, status, and payment method. The wallet is provisioned for payout services and is profile-specific.

SectionPayout
Topics03
Pathpayout / 02-walletApi

API Endpoint

GEThttps://api.thepayment.company/api/v1/wallet

Headers

Header NameDescription
Content-TypeDefines the content type. Always use application/json.
AuthorizationBearer token used for authentication.

Sample Responses

{
"data": [
  {
    "wallet_id": "WAL1234567890",
    "currency": "USD",
    "amount": 10000,
    "payment_method": "card",
    "status": "Active"
  },
  {
    "wallet_id": "WAL9876543210",
    "currency": "EUR",
    "amount": 5000,
    "payment_method": "card",
    "status": "Inactive"
  }
]
}

On this page