Fetch Wallet Details

This endpoint allows the user to fetch wallet details for each Blockchain.

RATE LIMIT FOR FETCH WALLET DETAILS API is 10 REQUESTS BETWEEN 60 SECOND.

To fetch wallet details for a user, the /wallet/wallet-information API endpoint requires two parameters in the request:

  1. userEmail - The email address of the user for which you want to create the wallet. This links the wallet to their account.

  2. walletAddress - The wallet address of the user for a specific blockchain. For Polygon, add the polygon address.

POST https://dev-api.altra.click/wallet/wallet-information

Request Body

NameTypeDescription

userEmail*

Required

walletAddress*

Required

// fetch user wallet information
{
    "userEmail": "user@gmail.com",
    "walletAddress": "0x5928f76cffaf9adbd4a1658520caec0731b1c4c9"
}

Last updated