---
title: "Get organization analytics"
method: GET
path: "/analytics/{organizationId}"
tags: ["Analytics"]
---

# Get organization analytics

`GET /analytics/{organizationId}`

Gets analytics data for the specified organization. This feature is available only for organizations with the Enterprise plan. You can get analytics data only for organizations where you have the "Owner" organization role. Otherwise, you get the 403 error.

The data entries in the response are sorted by the amount of operations used by a scenario in ascending order. Specify different sorting with the `sortBy` parameter. You can use query parameters (like `timeframe[dateFrom]`, `timeframe[dateTo]` or `teamId`) to refine the results and pagination to navigate through a large number of entries.

Make keeps the analytics data for a maximum of 30 days for non-Enterprise plans and 60 days for Enterprise plans. The default time frame reflects the maximum available for your plan.

## Path parameters

- `organizationId` integer, required

## Query parameters

- `teamId` union
  - integer
  - integer[]
- `folderId` union
  - integer
  - integer[]
- `status` union
  - 'active' | 'invalid' | 'inactive'
  - string[]
- `timeframe[dateFrom]` string, date-time
- `timeframe[dateTo]` string, date-time
- `pg[offset]` integer
- `pg[limit]` integer
- `pg[last]` integer
- `pg[sortBy]` 'name' | 'teamName' | 'status' | 'operations' | 'executions' | 'errors' | 'errorRate' | 'executionsChange' | 'operationsChange' | 'errorsChange' | 'errorRateChange'
- `pg[sortDir]` 'asc' | 'desc'
- `pg[returnTotalCount]` boolean

## Response `200`

Analytics entries for the specified organization.

- object
  - `total` object
    - `executions` integer
    - `operations` integer
    - `centicredits` string — Bigint number as a string to avoid precision issues in JavaScript.
    - `errors` integer
    - `errorRate` number — Percentage. Available only when it can be calculated.
    - `executionsChange` number — Percentage. Available only when it can be calculated.
    - `operationsChange` number — Percentage. Available only when it can be calculated.
    - `centicreditsChange` number — Percentage. Available only when it can be calculated.
    - `errorsChange` number — Percentage. Available only when it can be calculated.
    - `errorRateChange` number — Percentage. Available only when it can be calculated.
  - `analytics` object[]
    - `executions` integer
    - `operations` integer
    - `centicredits` string — Bigint number as a string to avoid precision issues in JavaScript.
    - `errors` integer
    - `errorRate` number — Percentage. Available only when it can be calculated.
    - `executionsChange` number — Percentage. Available only when it can be calculated.
    - `operationsChange` number — Percentage. Available only when it can be calculated.
    - `centicreditsChange` number — Percentage. Available only when it can be calculated.
    - `errorsChange` number — Percentage. Available only when it can be calculated.
    - `errorRateChange` number — Percentage. Available only when it can be calculated.
    - `imtId` string
    - `id` number
    - `name` string
    - `status` 'active' | 'invalid' | 'inactive'
    - `teamId` number
    - `teamName` string
  - `pg` object
    - `last` string — Shown only when using the `last` based pagination.
    - `showLast` boolean — Shown only when using the `last` based pagination.
    - `sortBy` string
    - `sortDir` string
    - `limit` integer
    - `offset` integer — Shown only when using the `offset` based pagination.
    - `totalCount` integer — The number of analytics entries for the given query.

---

[API](https://skmtc.net/make/apis/web-api-v2-public.md) · [All operations](https://skmtc.net/make/apis/web-api-v2-public/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/make/web-api-v2-public/versions/531769e6f813/schema)
