Getting started with the Privy REST API
https://api.privy.io
fetch('https://api.privy.io/v1/wallets', { method: 'GET', headers: { 'Authorization': `Basic ${btoa('insert-your-app-id' + ':' + 'insert-your-app-secret')}`, 'privy-app-id': 'insert-your-app-id', 'Content-Type': 'application/json' } }) .then(response => response.json()) .then(data => console.log(data));