Returns a list of all billing cycles for your enterprise from inception until today.
Response
Returns an array of billing cycle objects, each containing:
The start date and time of the billing cycle
The end date and time of the billing cycle
curl -X GET "https://api.devin.ai/v2/enterprise/consumption/cycles" \
-H "Authorization: Bearer YOUR_API_KEY"
[
{
"start": "2024-01-01T00:00:00Z",
"end": "2024-01-31T23:59:59Z"
},
{
"start": "2024-02-01T00:00:00Z",
"end": "2024-02-29T23:59:59Z"
},
{
"start": "2024-03-01T00:00:00Z",
"end": "2024-03-31T23:59:59Z"
}
]