JavaScript
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('https://api.valox.co/api/v1/eoa-accounts', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "data": { "eoaAccounts": [ { "id": "clp3j1f9a0000a1cdh6ezx2qv", "address": "0x1234567890abcdef1234567890abcdef12345678", "userId": "user_123", "createdAt": "2025-01-27T00:00:00Z" } ] } }
Returns a list of addresses associated with the authenticated user.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
A list of addresses for the authenticated user.
Show child attributes
"clp3j1f9a0000a1cdh6ezx2qv"
"0x1234567890abcdef1234567890abcdef12345678"
"user_123"
"2025-01-27T00:00:00Z"