Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
curl --request GET \
--url https://api.secton.org/v1/usage \
--header 'Authorization: Bearer <token>'
{
"creditsAvailable": 10000,
"creditsTotal": 50000
}
Get the current usage and available credits for your organization. Not available for the playground organization.
curl --request GET \
--url https://api.secton.org/v1/usage \
--header 'Authorization: Bearer <token>'
{
"creditsAvailable": 10000,
"creditsTotal": 50000
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.