Fetch Wallet Information
Fetch Wallet Owner Information
Fetch all the information of a given wallet.
URL
To fetch the information of a given wallet, use https://custody.arianee.com/{{client}}/{{chainType}}/wallet/infos
.
GET - https://custody.arianee.com/{{client}}/{{chainType}}/wallet/infos
Return Payload
Status code | Success | Description |
---|---|---|
200 | true | Information is returned. Note that walletId is available for DFNS custodial providers. |
{
"userId": "userId123",
"signingClient": "testclient",
"address": "0x786e61722d149f16cdc47805ae9be60b6d1379ee",
"provider": "dfns",
"walletId": "wa-441di-tr457-8pjrfkgjjpaak1mv", // si DFNS
"identifiers": {
"email": "[email protected]"
}
}
Error
Status Code | Success | Description |
---|---|---|
404 | false | The wallet may not exist. You are not authenticated. |
Fetch Wallet Address
Fetch the wallet address of a given user.
URL
To fetch the information of a given wallet, use https://custody.arianee.com/{{client}}/{{chainType}}/address
.
GET - https://custody.arianee.com/{{client}}/{{chainType}}/address
Return Payload
Status Code | Success | Description |
---|---|---|
200 | true | The user's wallet address is returned. |
{
"address": "0x4febba33415ab41256cbc981c178297f926a6490"
}
Error
Status Code | Success | Description |
---|---|---|
404 | false | The wallet may not exist. You are not authenticated. |
Updated about 2 months ago