Verifying account balance

Pre-requisite: You must create an account and obtain an API key via the user interface

Create account here

Verifying account balance

After you have made a successful deposit through our frontend UI, you can check your latest account balance via the Balances API.

curl --location 'https://api.deltadefi.io/accounts/balance' \
--header 'X-API-KEY: <your_api_key>'

Your Response should look something like below:

[
    {
        "asset": "ada",
        "asset_unit": "",
        "free": 0,
        "locked": 100
    }
]

Last updated