Retrieve Wallet Balance

GET /wallets/balance/

Use the GET /wallets/balance/ endpoint to retrieve the current balance of a user's wallet.

Parameters

This endpoint does not require any parameters.

Responses

Code

Description

200

The request was successful. Returns the user's wallet balance.

Example Response

{
  "balance": 1500.50,
  "currency": "USD",
  "last_updated": "2024-12-11T12:34:56Z"
}

Last updated