Create Polygon Wallets

This endpoint allows you to create Polygon wallets.

To create a Polygon wallet for a user, the /wallet/create-polygon-wallet 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. blockChainSupported - Specify 'Polygon' to indicate the wallet should be created on the Polygon blockchain.

POST https://dev-api.altra.click/wallet/create-polygon-wallet

Request Body

NameTypeDescription

userEmail*

Required

blockChainSupported*

String

// Create Polygon wallet for user
{  
      "userEmail": "user@gmail.com"
      "blockChainSupported": "Polygon" 
}

The wallet creation API request will return a wallet address that can send and receive USDC and USDT stablecoins on the Polygon blockchain.

Specifically, the response will contain:

  • walletAddress - The public Polygon address tied to the created wallet

  • asset - USDC and USDT, the supported stablecoins on this wallet

Once a wallet is created successfully, users can top up the address by depositing USDC or USDT tokens on Polygon.

Last updated