JavaScript
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('https://api.valox.co/api/v1/owners', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "data": { "owners": [ "0x3270bf32AB647e90eF94A026c70Aa1daaaDA2382" ] } }
Returns the list of addresses that are owners of the user’s Safe account. These owners have the ability to sign transactions and manage the Safe.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successfully retrieved the list.
Show child attributes
Ethereum address of a Safe owner.