v1

latestOpenAPI 3.1.02026-07-24590534.0 KB

Fetch user wallets

Get all wallets linked to authenticated user or subaccount tethered.

get/users/{user_id}/wallets

Path parameters

user_idstring required

The User ID. Use 'me' if fetching wallets of main authenticated user, use the user_id if fetching for Sub-account linked to the authenticated user.

Response

200

statusstring
messagestring

Example response

{
  "status": "success",
  "message": "Successful",
  "data": [
    {
      "id": "ehrvhnfz",
      "name": "Naira",
      "currency": "ngn",
      "balance": "123.1995545518954836",
      "locked": "0.0",
      "staked": "0.0",
      "user": {
        "id": "23azi7bj",
        "sn": "QDXXIRPXXKS",
        "email": "test@gmail.com",
        "first_name": "Oye",
        "last_name": "Olalekan",
        "display_name": "appstate",
        "created_at": "2021-04-09T09:48:14.000Z",
        "updated_at": "2024-03-12T10:34:34.000Z"
      },
      "converted_balance": "123.1995545518954836",
      "reference_currency": "ngn",
      "created_at": "2021-04-09T09:48:14.000Z",
      "updated_at": "2024-04-19T09:27:21.000Z"
    }
  ]
}