Wallet Experience APIs
GET Blockchain Accounts
Overview
WaaS React SDK
Wallet as a Service (WaaS)
- Overview
- Quickstart
- Errors
- Pagination
- Wallet Creation APIs
- Wallet Experience APIs
- GETGET Activities
- GETGET Balances
- GETGET Tokens
- GETGET Profiles
- POSTGET Portfolio
- GETGET Blockchain Accounts
- POSTPOST Blockchain Accounts
- PATCHPATCH Blockchain Accounts
- GETGET Floor Prices
- POSTPOST Batch Floor Prices
- POSTPOST Batch Historical Floor Prices
- GETGET Transactions
- POSTPOST Transactions
- GETGET Discovery Feed
- Activity Webhooks
- GET
- NFT APIs
- Web3 APIs
- SDK
Integrations
- Get Started
- Authentication
- Connectors
- FAQ
- Partners
Wallet Experience APIs
GET Blockchain Accounts
Get block chain accounts for the current user
GET
/
v2
/
blockchain
/
accounts
curl --request GET \
--url https://api.bitski.com/v2/blockchain/accounts \
--header 'Authorization: Bearer <token>'
{
"accounts": [
{
"id": "d5faf2b5-160f-4b9d-9042-716cb29a371f",
"profileId": "83928052-a28b-4503-a6d5-3fc777b71341",
"displayName": "Demo Wallet",
"kind": "bitski",
"coinType": 60,
"address": "0xDAFEA492D9c6733ae3d56b7Ed1ADB60692c98Bc5",
"createdAt": "2023-04-13T20:32:49.484197",
"updatedAt": "2023-04-13T20:32:49.484197"
}
]
}
Examples
{
"accounts": [
{
"id": "d5faf2b5-160f-4b9d-9042-716cb29a371f",
"profileId": "83928052-a28b-4503-a6d5-3fc777b71341",
"displayName": "Demo Wallet",
"kind": "bitski",
"coinType": 60,
"address": "0xDAFEA492D9c6733ae3d56b7Ed1ADB60692c98Bc5",
"createdAt": "2023-04-13T20:32:49.484197",
"updatedAt": "2023-04-13T20:32:49.484197"
}
]
}
curl --request GET \
--url https://api.bitski.com/v2/blockchain/accounts \
--header 'Authorization: Bearer <token>'
{
"accounts": [
{
"id": "d5faf2b5-160f-4b9d-9042-716cb29a371f",
"profileId": "83928052-a28b-4503-a6d5-3fc777b71341",
"displayName": "Demo Wallet",
"kind": "bitski",
"coinType": 60,
"address": "0xDAFEA492D9c6733ae3d56b7Ed1ADB60692c98Bc5",
"createdAt": "2023-04-13T20:32:49.484197",
"updatedAt": "2023-04-13T20:32:49.484197"
}
]
}