curl --request GET \
--url https://api.hyperline.co/v1/wallets/{id} \
--header 'Authorization: Bearer <token>'
{
"id": "wal_PPpxP5d3uvgiTT",
"customer_id": "cus_QalW2vTAdkR6IY",
"state": "active",
"currency": "EUR",
"balance": {
"amount": 2400
},
"projected_balance": {
"amount": 2400
},
"created_at": "2024-12-20T16:04:11Z",
"is_auto_load_enabled": true,
"auto_load_type": "paid",
"auto_load_amount": 20000,
"auto_load_interval": {
"period": "months",
"count": 1
},
"auto_load_next_date": "2024-12-20T16:04:11Z",
"auto_load_reset": false
}
Retrieve the details of an existing wallet.
curl --request GET \
--url https://api.hyperline.co/v1/wallets/{id} \
--header 'Authorization: Bearer <token>'
{
"id": "wal_PPpxP5d3uvgiTT",
"customer_id": "cus_QalW2vTAdkR6IY",
"state": "active",
"currency": "EUR",
"balance": {
"amount": 2400
},
"projected_balance": {
"amount": 2400
},
"created_at": "2024-12-20T16:04:11Z",
"is_auto_load_enabled": true,
"auto_load_type": "paid",
"auto_load_amount": 20000,
"auto_load_interval": {
"period": "months",
"count": 1
},
"auto_load_next_date": "2024-12-20T16:04:11Z",
"auto_load_reset": false
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The response is of type object
.
Was this page helpful?