Identity

Query Blockchain Wallet Data

Retrieve wallet metadata in your application.


Retrieve all wallets

Make a GET request to /wallets to return a list of all wallet ids for the application.


const response = await fetch('https://api.utiliti.ai/wallets', { method: 'GET', headers: { 'Content-Type': 'application/json', 'X-API-key': '<YOUR_API_KEY_HERE>', }, })

Retrieve wallet metadata

Make a GET request to /wallets/{wallet_id} where {wallet_id} is replaced with the wallet's id to return the wallet metadata.


const wallet_id = '3fa85f64-5717-4562-b3fc-2c963f66afa6' const response = await fetch('https://api.utiliti.ai/wallets/' + wallet_id, { method: 'GET', headers: { 'Content-Type': 'application/json', 'X-API-key': '<YOUR_API_KEY_HERE>', }, })
Previous
Overview