Loading...
API endpoints for managing your Celar wallets.
Retrieve all wallets associated with your organization.
curl --request GET \
--url https://api.sandbox.celar.io/api/v1/wallets \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <<your_api_key>>'Create a new Celar wallet for a specific blockchain.
curl --request POST \
--url https://api.sandbox.celar.io/api/v1/wallets \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <<your_api_key>>' \
--data '{
"chain": "base",
"label": "My Wallet"
}'{
"celar_walletId": "wal_abc123",
"address": "0x...",
"chain": "base",
"label": "My Wallet",
"created_at": "2024-01-01T00:00:00Z"
}Check the balance of a specific wallet.
curl --request GET \
--url https://api.sandbox.celar.io/api/v1/wallets/<celar_walletId>/balance \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <<your_api_key>>'{
"celar_walletId": "wal_abc123",
"balances": {
"USDC": "1000.00",
"USDT": "500.00"
}
}