curl --request GET \
--url http://localhost:3000/billing/usage \
--header 'Authorization: Bearer <token>'{
"apiCalls": {
"used": 123,
"limit": 123
},
"flags": {
"used": 123,
"limit": 123
},
"projects": {
"used": 123,
"limit": 123
}
}Returns API calls, flags, and projects usage with their limits
curl --request GET \
--url http://localhost:3000/billing/usage \
--header 'Authorization: Bearer <token>'{
"apiCalls": {
"used": 123,
"limit": 123
},
"flags": {
"used": 123,
"limit": 123
},
"projects": {
"used": 123,
"limit": 123
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.