Retrieve account usage

Retrieve account usage

Endpoint

GET https://embedworkflow.com/api/v1/account/usage

Query Parameters

start_time string, optional

Start of the usage period (ISO 8601 format)

end_time string, optional

End of the usage period (ISO 8601 format)

user_key string, optional

User key to filter usage for a specific user

Response

Returns successful.

Response Properties

active_workflows_count integer

Number of active workflows (on: true)

end_time string

End of the usage period (ISO 8601 format)

executions_count integer

Number of executions in the specified time period

object string

Object type identifier

start_time string

Start of the usage period (ISO 8601 format)

usage integer

Total number of actions in the specified time period

users_count integer

Total number of users in the account

Response
1
2
3
4
5
6
7
8
9
{
  "active_workflows_count": 0,
  "end_time": "2026-01-01T23:59:59Z",
  "executions_count": 0,
  "object": "usage",
  "start_time": "2025-12-02T00:00:00Z",
  "usage": 0,
  "users_count": 1
}