v1

latestOpenAPI 3.0.02026-07-136452257.6 KB

Get tenant usage information

Retrieves comprehensive usage statistics for the current tenant including total object counts and a per-schema breakdown for billing and analytics.

get/usage

Response

Tenant usage data retrieved successfully

totalObjectsCountinteger required

Total number of objects across all schemas in the tenant.

Example response

{
  "totalObjectsCount": 1234,
  "perSchemaUsageInfo": [
    {
      "schemaId": 1,
      "schemaName": "My Schema",
      "schemaCreatedAt": "2025-01-15T10:30:00Z",
      "objectCount": 567
    }
  ]
}