Vaults List

The following endpoint is to be used for downloading

/vault/list

METHOD: GET

This endpoint fetches a list of available vaults.

Make sure to include the required headers in your request:

  • x-api-key: Your API key.

  • x-user-email: Your email address associated with your account.

Here is an example of how to make the request using axios with NodeJS:

axios.get('https://api.xerberus.io/public/v1/vault/list', {
  headers: {
    'x-api-key': 'your-api-key',
    'x-user-email': 'your-email'
  }
})
  .then(response => console.log(response.data))
  .catch(error => console.error(error));

API Output Example

Last updated