Skip to main content
GET
/
api
/
v1
/
eoa-accounts
List authenticated account addresses
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"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

A list of addresses for the authenticated user.

data
object