v1
latestOpenAPI 3.0.12026-07-26152262362.2 KBService Quotas
List service quotas
Returns the latest service quota usage snapshots collected by DoiT for the authenticated customer. Results include only quotas retained by DoiT's monitoring collectors and are not a complete or live inventory from the cloud providers. Results are sorted by utilization percentage in descending order.
get/core/v1/service-quotas
Query parameters
provider'aws' | 'gcp'
Filter results to a cloud provider. Omit to return all supported providers.
minUtilizationPercentnumber double
Return quotas whose utilization percentage is greater than or equal to this value.
maxResultsinteger
Maximum number of results to return in one page.
pageTokenstring
Page token, returned by a previous call, to request the next page of results
Response
OK - Service quotas returned.
Example response
{
"items": [
{
"resource": {
"id": "example-project",
"name": "Example Project"
},
"service": "Compute Engine",
"quota": "CPUS",
"region": "us-central1",
"limit": 100,
"usage": 85,
"utilizationPercent": 85,
"observedAt": "2026-07-17T12:00:00Z"
}
]
}