v5

latestOpenAPI 3.0.3Apache 2.0raw.githubusercontent.com2026-02-283466592.5 MB
Insights charts (beta)

Get release frequency chart data

Get release frequency chart data. Engineering insights displays release frequency data in the release frequency metric view.

get/api/v2/engineering-insights/charts/releases/frequency

Query parameters

projectKeystring string required

The project key

The project key

environmentKeystring string required

The environment key

The environment key

applicationKeystring string

Comma separated list of application keys

Comma separated list of application keys

hasExperimentsboolean

Filter events to those associated with an experiment (true) or without an experiment (false)

Filter events to those associated with an experiment (true) or without an experiment (false)

globalstring string

Filter to include or exclude global events. Default value is include. Options: include, exclude

Filter to include or exclude global events. Default value is include. Options: include, exclude

groupBystring string

Property to group results by. Options: impact

Property to group results by. Options: impact

fromstring date-time

Unix timestamp in milliseconds. Default value is 7 days ago.

tostring date-time

Unix timestamp in milliseconds. Default value is now.

bucketTypestring string

Specify type of bucket. Options: rolling, hour, day. Default: rolling.

Specify type of bucket. Options: rolling, hour, day. Default: rolling.

bucketMsinteger

Duration of intervals for x-axis in milliseconds. Default value is one day (86400000 milliseconds).

Duration of intervals for x-axis in milliseconds. Default value is one day (86400000 milliseconds).

expandstring string

Options: metrics

Options: metrics

Response

Chart response

Example response

{
  "metadata": {
    "name": "deploymentFrequency",
    "xAxis": {
      "unit": "count"
    },
    "yAxis": {
      "unit": "count"
    }
  },
  "series": [
    {
      "metadata": {
        "bounds": [
          {
            "name": "equal",
            "value": 100
          }
        ]
      },
      "data": [
        {
          "x": 1617225600000,
          "y": 100
        }
      ]
    }
  ]
}