Skip to main content
GET
/
customers
/
{customer_id}
/
wallets
Get Customer Wallets
curl --request GET \
  --url https://sandbox-api.prava.space/v1/customers/{customer_id}/wallets \
  --header 'Api-Key: <api-key>'
{
  "data": {
    "count": 1,
    "data": [
      {
        "wallet_id": "f0e1d2c3-b4a5-6789-0123-456789abcdef",
        "balance": {
          "currency": "USD",
          "amount": "100.00"
        },
        "created_at": "2025-10-15T05:36:43.000Z",
        "updated_at": "2025-10-15T05:36:43.000Z"
      }
    ]
  },
  "meta": {
    "request_id": "req_12345",
    "timestamp": "2025-10-15T05:36:43.000Z"
  }
}

Authorizations

Api-Key
string
header
required

Path Parameters

customer_id
string<uuid>
required

Response

A list of wallets.

The response is of type any.

I