Skip to main content
GET
/
v1
/
workspace
/
usage
Get workspace usage
curl --request GET \
  --url https://api.framelane.io/v1/workspace/usage \
  --header 'Authorization: Bearer <token>'
{
  "period_start": "2023-11-07T05:31:56Z",
  "period_end": "2023-11-07T05:31:56Z",
  "render_minutes": 142.7,
  "task_count": 384,
  "egress_bytes": 5368709120
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successful Response

period_start
string<date-time>
required

Start of the current billing period (first of month).

period_end
string<date-time>
required

Exclusive end of the current billing period.

render_minutes
number
required

Total render output duration in minutes for the period.

Example:

142.7

task_count
integer
required

Total AI tasks submitted during the period.

Example:

384

egress_bytes
integer
required

Total artifact egress bytes for the period.

Example:

5368709120