Skip to main content
GET
/
account
/
usage
Get account usage overview
curl --request GET \
  --url https://api.veryfront.com/account/usage \
  --header 'Authorization: Bearer <token>'
{
  "storage": {
    "used": 123,
    "total": 123,
    "remaining": 123,
    "percent_used": 123
  },
  "bandwidth": {
    "used": 123,
    "total": 123,
    "remaining": 123,
    "percent_used": 123
  },
  "api_calls": {
    "used": 123,
    "total": 123,
    "remaining": 123,
    "percent_used": 123
  },
  "custom_domains": {
    "used": 123,
    "total": 123,
    "remaining": 123,
    "percent_used": 123
  },
  "code_exports": {
    "used": 123,
    "total": 123,
    "remaining": 123,
    "percent_used": 123
  },
  "veryfront_badge": {
    "used": 123,
    "total": 123,
    "remaining": 123,
    "percent_used": 123
  },
  "period_start": "<string>",
  "period_end": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use a JWT bearer token or a Veryfront API key in the Authorization header.

Response

Account usage overview details

storage
object
required
bandwidth
object
required
api_calls
object
required
custom_domains
object
required
code_exports
object
required
veryfront_badge
object
required
period_start
string
required

ISO timestamp for the start of the current billing period.

period_end
string
required

ISO timestamp for the end of the current billing period.