For the complete documentation index, see llms.txt. This page is also available as Markdown.

Analytics

The following endpoints allow you to get analytics data for your organization. Make uses the analytics data to create analytics dashboards.

Get parallel execution capacity metrics

get
/execution-capacity/{organizationId}

Returns historical parallel execution usage metrics for an Organization over a time range, aggregated into samples at a fixed rollup interval. The sample with the highest capacity utilization is picked for each time interval.

Required scopes
This endpoint requires the following scopes:
Authorizations
AuthorizationstringRequired

Authorize the API call with your API token in the Authorization header with the value: Token your-api-token.

If you don't have an API token yet, please refer to the "Authentication" section to learn how to create one.

Path parameters
organizationIdinteger · min: 1Required

The ID of the organization to get execution capacity metrics for

Example: 12345
Query parameters
fromstring · date-timeOptional

Start of the time range (inclusive), as an ISO 8601 date-time

Example: 2026-06-15T00:00:00.000Z
tostring · date-timeOptional

End of the time range (exclusive), as an ISO 8601 date-time

Example: 2026-06-15T01:00:00.000Z
rollupSecondsinteger · min: 1 · max: 86400Optional

Time interval in seconds used for rolling up the samples. When omitted, a rollup is chosen automatically so the sample count stays at constant size.

Example: 60
Responses
200

Successful response

application/json
rollupSecondsinteger · min: 1 · max: 86400Required

Time interval in seconds that was used for rolling up the samples

get/execution-capacity/{organizationId}

Get live parallel execution capacity

get
/execution-capacity/{organizationId}/live

Returns a single, real-time snapshot of parallel execution slot usage for an Organization — how many execution slots are currently acquired per scenario, the total slots in use, and the Organization's slot limit. Unlike the historical metrics endpoint, this reflects the live state at the moment of the request.

Required scopes
This endpoint requires the following scopes:
Authorizations
AuthorizationstringRequired

Authorize the API call with your API token in the Authorization header with the value: Token your-api-token.

If you don't have an API token yet, please refer to the "Authentication" section to learn how to create one.

Path parameters
organizationIdinteger · min: 1Required

The ID of the Organization to get the live execution capacity snapshot for

Example: 12345
Responses
200

Successful response

application/json
snapshotAtstring · date-timeRequired

Timestamp at which the snapshot was taken

scenarioIdsinteger[]Required

IDs of the Scenarios that currently have slots used

slotsinteger[]Required

Number of slots currently used per Scenario, positionally aligned with scenarioIds

totalSlotsinteger · min: 1Required

Total number of slots currently used across all Scenarios

limitintegerRequired

The Organization's parallel execution slot limit

get/execution-capacity/{organizationId}/live
200

Successful response

Last updated