Get Wallet
GET/api/v1/smart-wallets
Get the smart wallet of the authenticated user
Request
Query Parameters
apiKey string
(Required) Your Public API key
Example: {{publicKey}}
Responses
- 200
- 401
- 403
Successful response
- application/json
- Schema
- Example (from schema)
- Example
Schema
- object
{}
{
"ownerAddress": "0x199DC49d8187EeA58649F7cA387e2226d4155C94",
"smartWalletAddress": "0x545d3dD729d848023938D5F94af2346868EED7b9",
"walletModules": {
"GuardianManager": "0xC1254443B6b9E5b5714D57ae3Af16FE9D220775D",
"LockManager": "0x370672167439e399cE753963E31E26EEB5bfaf6c",
"RecoveryManager": "0xA85aA96857cBdEb5C7e88a59772E6E7170986f02",
"ApprovedTransfer": "0x959f0fF280EAF7BB1b57ec75AC777aB863f82736",
"TransferManager": "0xF66e26Fd99F4687CC29148BE2e331df2e49E249E",
"NftTransfer": "0xe713Ec7D3516d65966c5DeA3CF78EFE1DcaDd47B",
"TokenExchanger": "0xd636460D8866430EbDeDb5A3AE4f19D0735fD1B7",
"CommunityManager": "0x9585db67ab966Ec8dfDdc47bAD9cE46905A5a0e1",
"WalletOwnershipManager": "0xfE0B31C96FE5929849D8D48C56c428d935dDfE00"
},
"networks": [
"fuse"
],
"version": "1.7.0",
"paddedVersion": "0001.0007.0000"
}
Unauthorized
- application/json
- Schema
- Example (from schema)
- Example
Schema
- object
{}
{
"statusCode": 401,
"errorMessage": {
"statusCode": 401,
"message": "Unauthorized"
},
"path": "/api/v1/smart-wallets?apiKey={{publicKey}}"
}
Forbidden
- application/json
- Schema
- Example (from schema)
- Example
Schema
- object
{}
{
"statusCode": 403,
"errorMessage": {
"statusCode": 403,
"message": "Forbidden resource",
"error": "Forbidden"
},
"path": "/api/v1/smart-wallets?apiKey={{publicKey}}"
}
Loading...