Wallet
Get Wallet
Retrieve all data about a ZBD Project's Wallet.
GET
/v0/wallet
apikey*
curl --request GET \
--url https://api.zebedee.io/v0/wallet \
--header 'apikey: <apikey>'
To retrieve the balance of the Wallet for a specific ZBD Project, just make sure to use that Project’s API Key in the
apikey
header property in the API endpoint.Configuration
Header Parameters
apikeyrequired
string
ZBD Project API Key
{
"message": "Successfully retrieved Wallet.",
"data": {
"unit": "msats",
"balance": "384000"
}
}
Was this page helpful?
curl --request GET \
--url https://api.zebedee.io/v0/wallet \
--header 'apikey: <apikey>'
{
"message": "Successfully retrieved Wallet.",
"data": {
"unit": "msats",
"balance": "384000"
}
}