> For the complete documentation index, see [llms.txt](https://developers.make.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.make.com/white-label-documentation/admin-api-reference/analytics.md).

# Analytics

The following endpoints allow you to get analytics data for your organization. Make uses the analytics data to create [analytics dashboards](https://www.make.com/en/help/general/analytics-dashboard).

## Get parallel execution capacity metrics

> 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.

```json
{"openapi":"3.0.0","info":{"title":"Web API v2 - Public ","version":"1.0.0"},"tags":[{"name":"Analytics","description":"The following endpoints allow you to get analytics data for your organization. Make uses the analytics data to create [analytics dashboards](https://www.make.com/en/help/general/analytics-dashboard)."}],"servers":[{"url":"https://eu1.make.com/api/v2","description":"EU1 production zone"},{"url":"https://eu2.make.com/api/v2","description":"EU2 production zone"},{"url":"https://us1.make.com/api/v2","description":"US1 production zone"},{"url":"https://us2.make.com/api/v2","description":"US2 production zone"},{"url":"https://eu1.make.celonis.com/api/v2","description":"Celonis EU1 production zone"},{"url":"https://us1.make.celonis.com/api/v2","description":"Celonis US1 production zone"}],"security":[{"token":["organizations:read"]}],"components":{"securitySchemes":{"token":{"type":"apiKey","name":"Authorization","in":"header","description":"Authorize the API call with your API token in the `Authorization` header with the value: `Token your-api-token`.\n\nIf you don't have an API token yet, please refer to the [\"Authentication\" section](/api-documentation/authentication) to learn how to create one.\n"}}},"paths":{"/execution-capacity/{organizationId}":{"get":{"tags":["Analytics"],"summary":"Get parallel execution capacity metrics","description":"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.","parameters":[{"name":"organizationId","in":"path","required":true,"schema":{"type":"integer","minimum":1},"description":"The ID of the organization to get execution capacity metrics for"},{"name":"from","in":"query","required":false,"schema":{"type":"string","format":"date-time"},"description":"Start of the time range (inclusive), as an ISO 8601 date-time"},{"name":"to","in":"query","required":false,"schema":{"type":"string","format":"date-time"},"description":"End of the time range (exclusive), as an ISO 8601 date-time"},{"name":"rollupSeconds","in":"query","required":false,"schema":{"type":"integer","minimum":1,"maximum":86400},"description":"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."}],"responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"type":"object","required":["rollupSeconds","samples"],"properties":{"rollupSeconds":{"type":"integer","minimum":1,"maximum":86400,"description":"Time interval in seconds that was used for rolling up the samples"},"samples":{"type":"array","description":"Slot usage samples, one per rollup interval in the requested range","items":{"type":"object","required":["snapshotAt","scenarioIds","slots","totalSlots","limit"],"properties":{"snapshotAt":{"type":"string","format":"date-time","description":"Timestamp of the sample"},"scenarioIds":{"type":"array","description":"IDs of the Scenarios executing while this sample was taken","items":{"type":"integer","minimum":1}},"slots":{"type":"array","description":"Number of slots used per Scenario, positionally aligned with scenarioIds","items":{"type":"integer","minimum":1}},"totalSlots":{"type":"integer","minimum":1,"description":"Total number of slots used across all Scenarios in this sample"},"limit":{"type":"integer","description":"The Organization's parallel execution slot limit at the time of the sample"}}}}}}}}},"422":{"description":"The requested range and rollup would yield too many samples","content":{"application/json":{"schema":{"type":"object","required":["message"],"properties":{"message":{"type":"string"}}}}}}}}}}}
```

## Get live parallel execution capacity

> 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.

```json
{"openapi":"3.0.0","info":{"title":"Web API v2 - Public ","version":"1.0.0"},"tags":[{"name":"Analytics","description":"The following endpoints allow you to get analytics data for your organization. Make uses the analytics data to create [analytics dashboards](https://www.make.com/en/help/general/analytics-dashboard)."}],"servers":[{"url":"https://eu1.make.com/api/v2","description":"EU1 production zone"},{"url":"https://eu2.make.com/api/v2","description":"EU2 production zone"},{"url":"https://us1.make.com/api/v2","description":"US1 production zone"},{"url":"https://us2.make.com/api/v2","description":"US2 production zone"},{"url":"https://eu1.make.celonis.com/api/v2","description":"Celonis EU1 production zone"},{"url":"https://us1.make.celonis.com/api/v2","description":"Celonis US1 production zone"}],"security":[{"token":["organizations:read"]}],"components":{"securitySchemes":{"token":{"type":"apiKey","name":"Authorization","in":"header","description":"Authorize the API call with your API token in the `Authorization` header with the value: `Token your-api-token`.\n\nIf you don't have an API token yet, please refer to the [\"Authentication\" section](/api-documentation/authentication) to learn how to create one.\n"}}},"paths":{"/execution-capacity/{organizationId}/live":{"get":{"tags":["Analytics"],"summary":"Get live parallel execution capacity","description":"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.","parameters":[{"name":"organizationId","in":"path","required":true,"schema":{"type":"integer","minimum":1},"description":"The ID of the Organization to get the live execution capacity snapshot for"}],"responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"type":"object","required":["snapshotAt","scenarioIds","slots","totalSlots","limit"],"properties":{"snapshotAt":{"type":"string","format":"date-time","description":"Timestamp at which the snapshot was taken"},"scenarioIds":{"type":"array","description":"IDs of the Scenarios that currently have slots used","items":{"type":"integer","minimum":1}},"slots":{"type":"array","description":"Number of slots currently used per Scenario, positionally aligned with scenarioIds","items":{"type":"integer","minimum":1}},"totalSlots":{"type":"integer","minimum":1,"description":"Total number of slots currently used across all Scenarios"},"limit":{"type":"integer","description":"The Organization's parallel execution slot limit"}}}}}}}}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://developers.make.com/white-label-documentation/admin-api-reference/analytics.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
