---
title: "Get report results"
method: GET
path: "/analytics/v1/reports/{id}"
tags: ["Reports"]
---

# Get report results

`GET /analytics/v1/reports/{id}`

Returns the results of the specified report.

## Path parameters

- `id` string, required

## Query parameters

- `timeRange` string
- `startDate` string, date
- `endDate` string, date

## Response `200`

OK - The request succeeded.

- GetReportResponse — Results returned when running a report; includes schema and rows.
  - `id` string — Report ID.
  - `reportName` string — The name of the report.
  - `owner` string — Email address of the report owner.
  - `type` 'custom' | 'preset'
  - `createTime` integer — The creation time of the report, in milliseconds since the epoch.
  - `updateTime` integer — The time when this report was last updated, in milliseconds since the epoch.
  - `urlUI` string — The URL of the report in DoiT console.
  - `labels` LabelInfo[] — List of labels associated with the report.
    - `id` string, required — The unique identifier of the label.
    - `name` string, required — The name of the label.
  - `result` object
    - `schema` SchemaField[]
      - `name` string
      - `type` string
    - `mlFeatures` string[]
    - `rows` array[]
      - Value[]
        - union — The content of a single cell from a BigQuery result. Can be a string, number, or null.
          - string
          - number
          - integer
    - `secondaryRows` array[] — Secondary time range rows.
      - Value[]
        - union — The content of a single cell from a BigQuery result. Can be a string, number, or null.
          - string
          - number
          - integer
    - `forecastRows` array[]
      - Value[]
        - union — The content of a single cell from a BigQuery result. Can be a string, number, or null.
          - string
          - number
          - integer
    - `cacheHit` boolean — If true, results were fetched from the cache.

## Other responses

- `400` — Bad Request - The server cannot process the request, often due to a malformed request.
- `401` — Unauthorized - Invalid API key.
- `403` — Forbidden - The client is not authorized to perform the request.
- `404` — Not Found - The requested resource does not exist.
- `429` — Too Many Requests.

---

[API](https://skmtc.dev/doit/apis/doit-cloud-intelligence.md) · [All operations](https://skmtc.dev/doit/apis/doit-cloud-intelligence/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/doit/doit-cloud-intelligence/revisions/9416402fc119/schema)
