Skip to main content
GET
/
v2
/
enterprise
/
consumption
/
daily
Daily Consumption Endpoint
curl --request GET \
  --url https://api.devin.ai/v2/enterprise/consumption/daily \
  --header 'Authorization: Bearer <token>'
{
  "consumption_by_date": {},
  "consumption_by_org_id": {},
  "total_acus": 123,
  "consumption_by_user": {}
}
Requires an enterprise admin personal API key. Returns daily ACU consumption data for your enterprise, broken down by date and organization.

Timezone behavior

Billing cycles use midnight PST (Pacific Standard Time) as the day boundary, which corresponds to 08:00:00 UTC. To match the consumption data shown in the Devin dashboard, you must pass timestamps with this timezone offset. For example, to query consumption for a billing cycle from December 5, 2025 to January 5, 2026:
curl "https://api.devin.ai/v2/enterprise/consumption/daily?start_date=2025-12-05T08:00:00Z&end_date=2026-01-05T08:00:00Z" \
  -H "Authorization: Bearer YOUR_API_KEY"
If you pass dates without the T08:00:00Z suffix (e.g., 2025-12-05), the API will use midnight UTC, which may result in slightly different consumption totals compared to the dashboard.

Authorizations

Authorization
string
header
required

Personal API Key (apk_user_*) for Enterprise Admins only

Query Parameters

start_date
string<date-time> | null
end_date
string<date-time> | null
start
string<date-time> | null
end
string<date-time> | null
org_ids
string[] | null

Response

Successful Response

consumption_by_date
Consumption By Date · object
required
consumption_by_org_id
Consumption By Org Id · object
required
total_acus
number
required
consumption_by_user
Consumption By User · object