API Reference
Client
Create Wallet

Creates a new wallet for the user. The wallet is created for all the whitelisted networks for your API key.

Headers

Authorization : string
Authorization token received from Okto.


Parameters

None

Code

curl -X POST '${baseUrl}/api/v1/wallet' 
-H 'x-api-key: YOUR_CLIENT_API_KEY'
-H 'accept: application/json' 
-H 'Authorization: Bearer AUTH_TOKEN'
 

Response

{
    "status": "success",
    "data": {
        "wallets": [
        {
            "network_name": "POLYGON_TESTNET",
            "address": "0x0342A54DD44E8744FD185579Af57845Cb0ac6cB0",
            "success": true
        }
        ]
    }
}