Skip to main content
GET
/
v1
/
orgs
/
{org_id}
/
usage
Get org machine usage
curl --request GET \
  --url https://dcs.dedaluslabs.ai/v1/orgs/{org_id}/usage \
  --header 'x-api-key: <api-key>'
{ "awake_seconds": 123, "included_storage_gib": 123, "memory_cost_cents": 123, "memory_mib_second_decimal_cents": "<string>", "memory_mib_seconds": 123, "plan_slug": "<string>", "provisioned_storage_gib": 123, "storage_gib_monthly_cents": 123, "storage_overage_cost_cents": 123, "storage_overage_gib": 123, "storage_pricing_known": true, "usage_total_cost_cents": 123, "vcpu_cost_cents": 123, "vcpu_millis_second_decimal_cents": "<string>", "vcpu_millis_seconds": 123 }

Authorizations

x-api-key
string
header
required

Dedalus API key. Alternative to Bearer token.

Path Parameters

org_id
string
required

Organization ID.

Query Parameters

period_start
string

Billing period start (YYYY-MM-DD). Defaults to first of current month.

Response

OK

awake_seconds
integer<int64>
required

Total awake seconds accumulated during the billing period.

included_storage_gib
integer<int64>
required

Plan-included storage used for monthly overage projection in GiB.

memory_cost_cents
integer<int64>
required

Memory invoice line item in cents for the billing period.

memory_mib_second_decimal_cents
string
required

Invoice rate in cents for one memory MiB-second.

memory_mib_seconds
integer<int64>
required

Accumulated requested memory MiB multiplied by awake seconds.

plan_slug
string
required

Billing plan in effect for the organization.

provisioned_storage_gib
integer<int64>
required

Current provisioned storage summed across machines in GiB.

storage_gib_monthly_cents
integer<int64>
required

Invoice rate in cents for one GiB of monthly storage overage.

storage_overage_cost_cents
integer<int64>
required

Monthly storage overage invoice line item in cents.

storage_overage_gib
integer<int64>
required

Provisioned storage above the included plan amount in GiB.

storage_pricing_known
boolean
required

Whether storage overage projection is defined for the active plan.

usage_total_cost_cents
integer<int64>
required

Usage-based invoice total in cents.

vcpu_cost_cents
integer<int64>
required

vCPU invoice line item in cents for the billing period.

vcpu_millis_second_decimal_cents
string
required

Invoice rate in cents for one vCPU-millis-second.

vcpu_millis_seconds
integer<int64>
required

Accumulated requested vCPU-millis multiplied by awake seconds.

Last modified on April 9, 2026