Returns detailed database usage statistics and billing information for the current billing period. Includes compute hours, storage, data transfer, and branch counts with associated costs broken down by project.
curl --request GET \
--url https://api.case.dev/database/v1/usage \
--header 'Authorization: Bearer <token>'{
"period": {
"start": "2024-03-01T00:00:00.000Z",
"end": "2024-03-31T23:59:59.999Z"
},
"pricing": {
"computePerCuHour": 0.102,
"storagePerGbMonth": 0.024,
"transferPerGb": 0.09,
"branchPerMonth": 0,
"freeBranches": 10
},
"totals": {
"computeCuHours": 45.2,
"storageGbMonths": 12.5,
"transferGb": 3.2,
"totalBranches": 8,
"computeCostDollars": "4.61",
"storageCostDollars": "0.30",
"transferCostDollars": "0.29",
"branchCostDollars": "0.00",
"totalCostDollars": "5.20"
},
"projects": [
{
"id": "usage_abc123",
"projectId": "proj_xyz789",
"projectName": "legal-documents-db",
"computeCuHours": 30.5,
"storageGbMonths": 8.2,
"transferGb": 2.1,
"branchCount": 5,
"costs": {
"compute": "3.11",
"storage": "0.20",
"transfer": "0.19",
"branches": "0.00",
"total": "3.50"
},
"lastUpdated": "2024-03-15T10:30:00Z"
}
],
"projectCount": 1
}API key starting with sk_case_
Database usage statistics and billing information
Was this page helpful?
curl --request GET \
--url https://api.case.dev/database/v1/usage \
--header 'Authorization: Bearer <token>'{
"period": {
"start": "2024-03-01T00:00:00.000Z",
"end": "2024-03-31T23:59:59.999Z"
},
"pricing": {
"computePerCuHour": 0.102,
"storagePerGbMonth": 0.024,
"transferPerGb": 0.09,
"branchPerMonth": 0,
"freeBranches": 10
},
"totals": {
"computeCuHours": 45.2,
"storageGbMonths": 12.5,
"transferGb": 3.2,
"totalBranches": 8,
"computeCostDollars": "4.61",
"storageCostDollars": "0.30",
"transferCostDollars": "0.29",
"branchCostDollars": "0.00",
"totalCostDollars": "5.20"
},
"projects": [
{
"id": "usage_abc123",
"projectId": "proj_xyz789",
"projectName": "legal-documents-db",
"computeCuHours": 30.5,
"storageGbMonths": 8.2,
"transferGb": 2.1,
"branchCount": 5,
"costs": {
"compute": "3.11",
"storage": "0.20",
"transfer": "0.19",
"branches": "0.00",
"total": "3.50"
},
"lastUpdated": "2024-03-15T10:30:00Z"
}
],
"projectCount": 1
}