Identity

Create Blockchain Wallet

Create a wallet in your application.


Create blockchain wallet using network ID

Make a POST request to /wallets to create and return a new wallet object in your application. The wallet will also be accessible through the Console.


const response = await fetch('https://api.utiliti.ai/wallets', { method: 'POST', headers: { 'Content-Type': 'application/json', 'X-API-key': '<YOUR_API_KEY_HERE>', }, body: JSON.stringify({ name: 'Dylpickles wallet', network_id: '1', //ethereum }), })

You can find a list of all the support networks and their corresponding network ids here.