post https://api.metakeep.xyz/v3/getWallet/multiple
This API allows you to get user wallets for a list of users.
For user privacy and security, and to prevent abuse, this API has a few restrictions:
- You can only query wallets for
up to 50 users
at a time. - You can only query wallets for users that have been
queried previously
using the User Wallet API. The API response will be missing wallets for users that have not been queried previously. - The API only returns
ethAddress
andsolAddress
for now. If you need other addresses, please get in touch with us. - This API is only designed for dashboard use cases and has more restrictive rate limits. If you are performing an operation on a user's wallet, please use the User Wallet API instead.
{
"users": [
{
"email": "[email protected]"
},
{
"email": "[email protected]"
},
{
"email": "[email protected]"
}
]
}
{
"status": "SUCCESS",
"wallets": [
{
"user": {
"email": "[email protected]"
},
"wallet": {
"ethAddress": "0xff8DCF9bAa09cA271619751c352de92A15F57FF8",
"solAddress": "GVhpewzamLhgEGGGGTTAeymhXiL1Tk1GmjjL3hT7chHo"
}
},
{
"user": {
"email": "[email protected]"
},
"wallet": {
"ethAddress": "0x6B40cA2814198A37BA5798B0C5EE1A2E029b997f",
"solAddress": "Hccs9W3PpZzfdd7Y92CKwZ3nL4GDeuM76XC8W6wJDrgX"
}
},
{
"user": {
"email": "[email protected]"
},
"wallet": {
"ethAddress": "0x8dc572d9FefB6A8d6c76897AF11dDf1dEbCEAfd0",
"solAddress": "Ggh19W3PpZzfdd7Y92CKwZ3nL4GDeuM76XC8W6wJDrgX"
}
}
]
}
API Error Status
You can find error status returned by the api here.
© Copyright 2024, Passbird Research Inc.