---
id: cloud/integrations/data-extract-api
title: Cypress API for Enterprise Reporting | Cypress Documentation
description: >-
  See test status, browsers tested, spec results, average run duration, and
  flaky test rates with the Cypress Cloud Data Extract API.
section: cloud
source_path: docs/cloud/integrations/data-extract-api.mdx
version: 3cf5b86b3403f604bdf7f3e35025c3bc3865e02c
updated_at: '2026-05-07T17:44:31.931Z'
---
# Data Extract API

##### What you'll learn

*   How to use the Cypress Cloud API to extract test data
*   The API endpoints available for extracting data
*   How to use the API to retrieve data in CSV, JSON, or XLSX format
*   How to use the API to retrieve data for a specific date range

Enterprise Reporting data can be downloaded from Cloud using the Cypress Cloud API. The data is returned in file formats that allow you to easily incorporate it into your BI reporting platform, as well as a JSON file that can be programmatically parsed. This API allows you to retrieve your test data at a variety of levels, including all the way down to the individual test result data which includes status, error messages, runs tags and groups, Test Replay links, and much more.

All of the data that is viewable in [Enterprise Reporting](/llm/markdown/cloud/features/analytics/enterprise-reporting.md) can be retrieved using this API.

**Premium Cypress Cloud Feature**

**Data extract API** is available to users with an [Enterprise Cypress Cloud plan](https://cypress.io/pricing).

## Overview of the API

The reporting data is accessed using an API key that can be accessed from Cloud. Visit Integrations → Enterprise API in Cypress Cloud and copy the API key that has been created for your organization. There is nothing to enable. If you are subscribed to the Enterprise Cypress Cloud plan the ability to access your test data via API is already enabled.

  
A couple of things to note:

*   Data shown in Enterprise Reporting is not real-time. For aggregated data it is available as of midnight UTC of the current day. I.e. - data will be populated through "end of day yesterday". However, individual result data is near real-time and is available 30 minutes after the run has completed. Endpoints that return near real-time data are specified below.
*   Historical data is available as specified by your data retention limit in Cypress Cloud.

## API endpoint details

The following API endpoint will be used. Substitute your assigned API key where indicated by the `YOUR-API-KEY` placeholder text. The `report_id` specifies the type of data that will be retrieved.

[https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=REPORT-TYPE&export\_format=csv](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=REPORT-TYPE&export_format=csv)

The following query parameters are available for use:

*   start\_date. **Required** and should be passed in either yyyy-MM-dd or yyyy-MM-ddTHH:mm:ss format.
    
    For example, to request a start date of January 1, 2025, use: `?start_date=2025-01-01`. To request a start date of 12:30p UTC on that day, use: `?start_date=2025-01-01T12%3A30%3A00`
    
*   end\_date. Optional and should be passed in either yyyy-MM-dd or yyyy-MM-ddTHH:mm:ss format. If no end date is specified the query will default to today.
    
    For example, to request an end date of start of day March 1, 2025, use: `?end_date=2025-03-01`. To request an end date of 12:30p UTC on that day, use: `?end_date=2025-03-01T12%3A30%3A00`
    
*   projects. Optional, and accepts the name of your Cypress project. The project name should be URL encoded. You can pass as many projects parameters as needed.
    
    For example, to request that the data be filtered for projects _Project e2e_ and _Phoenix_, use: `&projects=Project%20e2e&projects=Phoenix`
    
*   branch. Optional, and accepts the name of your commit branch. The branch name should be URL encoded. You can pass as many branch parameters as needed.
    
    For example, to request that the data be filtered for branches _develop_ and _commitBranch1_, use: `&branch=develop&branch=commitBranch1`
    
*   export\_format. Specify the type of data format that will be returned in the response file. Valid options include: `csv`, `json`, `xlsx`
    
    For example, to request that the data be returned in JSON format, use: `&export_format=json`
    

## Usage & projects

### Project list

Retrieves a list of all projects in Cypress Cloud that have had tests recorded since the start\_date. The ID returned is used in the URL for project level analytics in Cypress Cloud and can be helpful to generate direct links to Cypress Cloud project analytics for a given project.

The report\_id is: `project-list`

Data returned includes:

*   project\_name
*   id

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=project-list&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=project-list&export_format=csv&start_date=2025-03-01)

### Tests per project

This data helps you understand which projects in your organization are utilizing the most or least tests. Data is returned in a simple summary per project.

The report\_id is: `usage-per-project-summary`

Data returned includes:

*   project\_name
*   test\_run\_count

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=usage-per-project-summary&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=usage-per-project-summary&export_format=csv&start_date=2025-03-01)

### Tests per project over time

This data helps you understand which projects in your organization are utilizing the most or least tests and how that usage looks over time.

The report\_id is: `usage-per-project-over-time`

Data returned includes:

*   project\_name
*   test\_run\_count
*   week
*   day

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=usage-per-project-over-time&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=usage-per-project-over-time&export_format=csv&start_date=2025-03-01)

### Cypress test types

This data helps you to grow and manage your Cypress test suite by understanding how you are adopting end-to-end and component testing in your organization.

The report\_id is: `cypress-test-types`

Data returned includes:

*   testing\_type (e2e or component)
*   total\_tests
*   total\_e2e
*   total\_ct
*   week
*   day

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=cypress-test-types&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=cypress-test-types&export_format=csv&start_date=2025-03-01)

### Cypress test suite size

This data helps you to understand and manage the growth of your test suite size across all projects in your organization. It calculates the average number of test cases executed per run and excludes runs that errored or timed out since they don't accurately represent the size of your test suite.

The report\_id is: `test-suite-size-summary`

Data returned includes:

*   total\_tests
*   total\_e2e
*   total\_ct
*   week

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=test-suite-size-summary&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=test-suite-size-summary&export_format=csv&start_date=2025-03-01)

### Cypress test suite over time

This data helps you to understand and manage the growth of your test suite size across all projects in your organization. It calculates the average number of test cases executed per run and excludes runs that errored or timed out since they don't accurately represent the size of your test suite. This data is reported over time.

The report\_id is: `test-suite-size-over-time`

Data returned includes:

*   project\_name
*   total\_tests
*   total\_e2e
*   total\_ct
*   week

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=test-suite-size-over-time&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=test-suite-size-over-time&export_format=csv&start_date=2025-03-01)

### Project test count and status

This data allows you to extract consolidated run status at the project level. Data is accumulated from the status of each individual test result. This data is reported over time.

The report\_id is: `status-per-test-daily`

Data returned includes:

*   project\_name
*   status
*   test\_run\_count
*   week
*   day

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=status-per-test-daily&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=status-per-test-daily&export_format=csv&start_date=2025-03-01)

## Run status

### Status by run

This data helps you understand the success and failure rates at the run level. If any part of the run fails then the entire run is failed.

The report\_id is: `status-per-build-summary`

Data returned includes:

*   status
*   test\_run\_count

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=status-per-build-summary&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=status-per-build-summary&export_format=csv&start_date=2025-03-01)

### Status by run over time

This data helps you understand the success and failure rates at the run level. If any part of the run fails then the entire run is failed. The data is reported over time.

The report\_id is: `status-per-build-over-time`

Data returned includes:

*   status
*   test\_run\_count
*   week
*   day

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=status-per-build-over-time&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=status-per-build-over-time&export_format=csv&start_date=2025-03-01)

### Status by spec

This data helps you understand the success and failure rates at the spec level. If any part of the spec fails then the entire spec is failed.

The report\_id is: `status-per-spec-summary`

Data returned includes:

*   status
*   test\_run\_count

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=status-per-spec-summary&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=status-per-spec-summary&export_format=csv&start_date=2025-03-01)

### Status by spec over time

This data helps you understand the success and failure rates at the spec level. If any part of the spec fails then the entire spec is failed. The data is reported over time.

The report\_id is: `status-per-spec-over-time`

Data returned includes:

*   status
*   test\_run\_count
*   week
*   day

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=status-per-spec-over-time&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=status-per-spec-over-time&export_format=csv&start_date=2025-03-01)

### Status by test run

This data helps you understand the success and failure rates at the individual test level.

The report\_id is: `status-per-test-summary`

Data returned includes:

*   failed
*   passed

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=status-per-test-summary&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=status-per-test-summary&export_format=csv&start_date=2025-03-01)

### Status by test run over time

This data helps you understand the success and failure rates at the individual test level. The data is reported over time.

The report\_id is: `status-per-test-over-time`

Data returned includes:

*   project\_name
*   test\_run\_count
*   week
*   status

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=status-per-test-over-time&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=status-per-test-over-time&export_format=csv&start_date=2025-03-01)

## Versions & browsers

### Cypress run versions

This data helps you monitor and track which versions of the Cypress app are being used in your organization.

The report\_id is: `cypress-build-versions-summary`

Data returned includes:

*   run\_count
*   cypress\_version

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=cypress-build-versions-summary&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=cypress-build-versions-summary&export_format=csv&start_date=2025-03-01)

### Cypress run versions over time

This data helps you monitor and track which versions of the Cypress app are being used in your organization. This data is reported over time.

The report\_id is: `cypress-build-versions-over-time`

Data returned includes:

*   run\_count
*   cypress\_version
*   week

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=cypress-build-versions-over-time&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=cypress-build-versions-over-time&export_format=csv&start_date=2025-03-01)

### Cypress run versions per project over time

This data helps you monitor and track which versions of the Cypress app are being used in your organization. The versions are reported at the project level. This data is reported over time.

The report\_id is: `cypress-build-versions-per-project-over-time`

Data returned includes:

*   project\_name
*   run\_count
*   cypress\_version
*   week

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=cypress-build-versions-per-project-over-time&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=cypress-build-versions-per-project-over-time&export_format=csv&start_date=2025-03-01)

### Browsers tested

This data helps you monitor and track which web browsers are being tested in your organization.

The report\_id is: `browsers-tested`

Data returned includes:

*   spec\_count
*   browser

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=browsers-tested&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=browsers-tested&export_format=csv&start_date=2025-03-01)

### Browser versions tested

This data helps you monitor and track which web browsers and specific versions are being tested in your organization.

The report\_id is: `browser-versions`

Data returned includes:

*   spec\_count
*   browser
*   version

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=browser-versions&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=browser-versions&export_format=csv&start_date=2025-03-01)

### Browser versions tested over time

This data helps you monitor and track which web browsers and specific versions are being tested in your organization. This data is reported over time.

The report\_id is: `browser-versions-over-time`

Data returned includes:

*   spec\_count
*   browser
*   version
*   day
*   week

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=browser-versions-over-time&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=browser-versions-over-time&export_format=csv&start_date=2025-03-01)

### Browser versions tested per project over time

This data about browser versions goes a step deeper and helps you monitor and track which web browsers and specific versions are being tested within your specific _projects_. This data is reported over time.

The report\_id is: `browser-versions-per-project-over-time`

Data returned includes:

*   project\_name
*   spec\_count
*   browser
*   version
*   day
*   week

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=browser-versions-per-project-over-time&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=browser-versions-per-project-over-time&export_format=csv&start_date=2025-03-01)

## Test-level data

All data for these APIs is available near real-time, 30 minutes after the run has completed.

### Individual spec results

This data allows you to extract all spec results regardless of spec result status. The maximum number of records returned is 500,000. Make multiple requests with different start\_date and end\_date parameter values if your volume of records will exceed 500k for a single request.

Data is available near real-time, 30 minutes after the run has completed.

The report\_id is: `spec-details`

Data returned includes:

*   project\_name
*   created\_at (date and time)
*   run\_number
*   commit\_author\_name
*   spec (path and filename)
*   status
*   total\_tests
*   pass\_tests
*   flaky\_tests
*   fail\_tests
*   parallel\_enabled
*   commit\_branch
*   group\_name
*   failed\_spec\_prioritized
*   spec\_duration (milliseconds)
*   browser\_name
*   browser\_version
*   os\_name
*   os\_version

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=spec-details&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=spec-details&export_format=csv&start_date=2025-03-01)

### Individual failed test results

This report allows you to extract all test result details for failed tests. The maximum number of records returned is 500,000. Make multiple requests with different start\_date and end\_date parameter values if your volume of records will exceed 500k for a single request.

Data is available near real-time, 30 minutes after the run has completed.

The report\_id is: `failed-test-details`

Data returned includes:

*   project\_name
*   created\_at (date and time)
*   run\_number
*   commit\_author\_name
*   commit\_branch
*   commit\_sha
*   ci\_build\_id
*   status
*   group\_name
*   run\_tags (string array)
*   error\_name (string array)
*   error\_message (string array)
*   test\_replay\_url
*   spec (path and filename)
*   test\_name (the test name matches what is shown in Cypress Cloud and a '///' delimiter is used between fragments of the test name)

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=failed-test-details&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=failed-test-details&export_format=csv&start_date=2025-03-01)

### Individual test results

This report allows you to extract all test result details regardless of test result status. The maximum number of records returned is 500,000. Make multiple requests with different start\_date and end\_date parameter values if your volume of records will exceed 500k for a single request.

Data is available near real-time, 30 minutes after the run has completed.

The report\_id is: `test-details`

Data returned includes:

*   project\_name
*   created\_at (date and time)
*   run\_number
*   commit\_author\_name
*   commit\_branch
*   commit\_sha
*   ci\_build\_id
*   status
*   group\_name
*   run\_tags (string array)
*   test\_duration
*   error\_name (string array)
*   error\_message (string array)
*   test\_replay\_url
*   spec (path and filename)
*   test\_name (the test name matches what is shown in Cypress Cloud and a '///' delimiter is used between fragments of the test name)

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=test-details&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=test-details&export_format=csv&start_date=2025-03-01)

## Run duration

### Average run duration over time

This report allows you to retrieve the average, median, min and max durations of passing runs. This data is reported over time.

The report\_id is: `average-passing-build-duration`

Data returned includes:

*   project\_name
*   run\_count
*   avg\_pass\_run\_duration (average)
*   mdn\_pass\_run\_duration (median)
*   min\_pass\_run\_duration (min)
*   max\_pass\_run\_duration (max)
*   day
*   week

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=average-passing-build-duration&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=average-passing-build-duration&export_format=csv&start_date=2025-03-01)

### Average spec duration over time

This report allows you to retrieve the average, median, min and max durations of specs. This data is reported over time. The maximum number of records returned is 500,000. Make multiple requests with different start\_date and end\_date parameter values if your volume of records will exceed 500k for a single request.

The report\_id is: `average-passing-spec-duration`

Data returned includes:

*   project\_name
*   spec (path and filename)
*   spec\_count
*   avg\_pass\_spec\_duration (average)
*   mdn\_pass\_spec\_duration (median)
*   min\_pass\_spec\_duration (min)
*   max\_pass\_spec\_duration (max)
*   day
*   week

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=average-passing-spec-duration&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=average-passing-spec-duration&export_format=csv&start_date=2025-03-01)

## Flaky

### Test flake detail over time

This data helps you identify where flake is occurring in your organization and how that changes over time.

The report\_id is: `flake-per-project-over-time`

Data returned includes:

*   project\_name
*   flaky\_test\_count
*   week
*   day

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=flake-per-project-over-time&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=flake-per-project-over-time&export_format=csv&start_date=2025-03-01)

### Flaky rate per project

This report allows you to understand the flaky _rate_ occurring in your projects, not just the _count_ of flaky tests. Sometimes a high flake count is seen simply because the test runs very frequently, but the % of flake could be lower than in other tests that run less often. The flaky rate per project is calculated for the time period requested. Flaky rate is shown as a whole number. For example: 1 flaky test over 4 runs has a flaky rate of 25.

The report\_id is: `flake-rate-per-project`

Data returned includes:

*   project\_name
*   flaky\_test\_count
*   pass\_test\_count
*   flaky\_rate

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=flake-rate-per-project&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=flake-rate-per-project&export_format=csv&start_date=2025-03-01)

### Flaky rate per project over time

This report allows you to understand the flaky _rate_ occurring in your projects, not just the _count_ of flaky tests. Sometimes a high flake count is seen simply because the test runs very frequently, but the % of flake could be lower than in other tests that run less often. The flaky rate per project is calculated for the time period requested. Flaky rate is shown as a whole number. For example: 1 flaky test over 4 runs has a flaky rate of 25.

The report\_id is: `flake-rate-per-project-over-time`

Data returned includes:

*   project\_name
*   flaky\_test\_count
*   pass\_test\_count
*   flaky\_rate
*   day
*   week

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=flake-rate-per-project-over-time&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=flake-rate-per-project-over-time&export_format=csv&start_date=2025-03-01)

### Flaky test details

This report allows you to extract all test result details of flaky tests. The maximum number of records returned is 500,000. Make multiple requests with different start\_date and end\_date parameter values if your volume of records will exceed 500k for a single request.

Data is available near real-time, 30 minutes after the run has completed.

The report\_id is: `flaky-test-details`

Data returned includes:

*   project\_name
*   created\_at (date and time)
*   run\_number
*   commit\_author\_name
*   commit\_branch
*   commit\_sha
*   ci\_build\_id
*   status
*   group\_name
*   run\_tags (string array)
*   error\_name (string array)
*   error\_message (string array)
*   test\_replay\_url

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=flaky-test-details&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=flaky-test-details&export_format=csv&start_date=2025-03-01)

### Top flaky tests per project

This report allows you to understand which tests have the highest flaky count and provides a URL to an example of a recent occurrence of this flake. Enables teams to jump directly to Cypress Cloud for troubleshooting using test replay.

The report\_id is: `top-flaky-per-project`

Data returned includes:

*   project\_name
*   flaky\_count
*   spec (path and filename)
*   test\_replay\_url

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=top-flaky-per-project&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=top-flaky-per-project&export_format=csv&start_date=2025-03-01)

## Aggregated data

### Top failures per project

This report allows you to understand which tests have the highest number of failures and provides a URL to an example of a recent occurrence of this failure. Enables teams to jump directly to Cypress Cloud and understand the full context surrounding the failure. Fail rate is shown as a whole number. For example: 1 failed test over 4 runs has a fail rate of 25.

The report\_id is: `top-failures-per-project`

Data returned includes:

*   project\_name
*   cnt\_passed
*   cnt\_failed
*   cnt\_total
*   fail\_rate
*   spec (path and filename)
*   test\_replay\_url

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=top-failures-per-project&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=top-failures-per-project&export_format=csv&start_date=2025-03-01)

### Top errors per project

This report allows you to understand which tests have the highest number of errors and provides a URL to an example of a recent occurrence of this error. Data is grouped by the error type and the error message. Enables teams to jump directly to Cypress Cloud and understand the full context surrounding the failure.

The report\_id is: `top-errors-per-project`

Data returned includes:

*   project\_name
*   test\_result\_uuid (the unique ID of the test in Cypress Cloud that can provide a direct URL to the test)
*   error\_type
*   error\_message
*   error\_count
*   test\_replay\_url

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=top-errors-per-project&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=top-errors-per-project&export_format=csv&start_date=2025-03-01)

## UI Coverage

Learn more about Cypress UI Coverage [here](/llm/markdown/ui-coverage/get-started/introduction.md).

### UI Coverage per project

This data helps you understand which projects in your organization have the highest or lowest UI Coverage %. Data is returned in a simple summary per project.

The report\_id is: `ui-coverage-per-project-summary`

Data returned includes:

*   project\_name
*   ui\_coverage\_pct

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=ui-coverage-per-project-summary&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=ui-coverage-per-project-summary&export_format=csv&start_date=2025-03-01)

### UI Coverage per project over time

This data helps you understand which projects in your organization have the highest or lowest UI Coverage % and how those measurements look over time.

The report\_id is: `ui-coverage-per-project-over-time`

Data returned includes:

*   project\_name
*   ui\_coverage\_pct
*   week
*   day

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=ui-coverage-per-project-over-time&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=ui-coverage-per-project-over-time&export_format=csv&start_date=2025-03-01)

### UI Coverage details

This report allows you to extract the UI Coverage % for each run along with other attributes of the run. The maximum number of records returned is 500,000. Make multiple requests with different start\_date and end\_date parameter values if your volume of records will exceed 500k for a single request.

The report\_id is: `ui-coverage-details`

Data returned includes:

*   project\_name
*   created\_at (date and time)
*   run\_number
*   status
*   ui\_coverage\_pct
*   commit\_author\_name
*   commit\_branch
*   ci\_build\_id
*   run\_tags (string array)

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=ui-coverage-details&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=ui-coverage-details&export_format=csv&start_date=2025-03-01)

## Cypress Accessibility

Learn more about Cypress Accessibility [here](/llm/markdown/accessibility/get-started/introduction.md).

### Accessibility score per project

This data helps you understand which projects in your organization have the highest or lowest Accessibility scores. Data is returned in a simple summary per project.

The report\_id is: `accessibility-per-project-summary`

Data returned includes:

*   project\_name
*   accessibility\_score

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=accessibility-per-project-summary&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=accessibility-per-project-summary&export_format=csv&start_date=2025-03-01)

### Accessibility score per project over time

This data helps you understand which projects in your organization have the highest or lowest Accessibility scores and how those scores looks over time.

The report\_id is: `accessibility-per-project-over-time`

Data returned includes:

*   project\_name
*   accessibility\_score
*   week
*   day

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=accessibility-per-project-over-time&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=accessibility-per-project-over-time&export_format=csv&start_date=2025-03-01)

### Accessibility score details

This report allows you to extract Cypress Accessibility scores for each run along with other attributes of the run. The maximum number of records returned is 500,000. Make multiple requests with different start\_date and end\_date parameter values if your volume of records will exceed 500k for a single request.

The report\_id is: `accessibility-details`

Data returned includes:

*   project\_name
*   created\_at (date and time)
*   run\_number
*   status
*   accessibility\_score
*   commit\_author\_name
*   commit\_branch
*   ci\_build\_id
*   run\_tags (string array)

Example: [https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report\_id=accessibility-details&export\_format=csv&start\_date=2025-03-01](https://cloud.cypress.io/enterprise-reporting/report?token=YOUR-API-KEY&report_id=accessibility-details&export_format=csv&start_date=2025-03-01)
