Read usage
Current-period usage counters for the calling organization.
GET
/v1/usageResponses
200Usage counters.
objectstringperiodobjectShow propertiesHide properties
startintegerendintegercommitsintegerreadsintegerRequest
curl -X GET "https://api.abloatai.com/api/v1/usage"const response = await fetch("https://api.abloatai.com/api/v1/usage", {
method: "GET"
});import requests
response = requests.get(
"https://api.abloatai.com/api/v1/usage",
)Response
{
"object": "usage",
"period": {
"start": 0,
"end": 0
},
"commits": 0,
"reads": 0
}