Balance

The Avian API's base URL is https://api.avian.io

GET/balance
Authorization
Header parameters
Response

Returns the remaining balance of the user, in cents.

Headers
Body
balance*integer
Request
const response = await fetch('/balance', {
    method: 'GET',
    headers: {
      "Authorization": "Bearer <token>"
    },
});
const data = await response.json();
Response
{}

Last updated