---
title: "Get an Organization’s Report"
method: GET
path: "/report/organizations/{org_id}"
tags: ["reports"]
---

# Get an Organization’s Report

`GET /report/organizations/{org_id}`

Get a usage report for the given organization from the start_date and end_date, detailing how much usage went to each QPU during that period. If no start_date or end_date are provided, period defaults to last 30 days until current time.

## Path parameters

- `org_id` string, uuid, required

## Query parameters

- `start_date` string — The start date of report.
- `end_date` string — The end date of report.

## Response `200`

Successfully retrieved a report of an organization.

- OrgReport — Organizational report.
  - `start_date` string — Start date.
  - `end_date` string — End date.
  - `organization` string — Organization name.
  - `organization_id` string, uuid — UUID of an organization.
  - `budget` number — Organization quota limit.
  - `balance` number — Organization balance.
  - `currency` string — Organization currency.
  - `qpus` QpuReport[]
    - `qpu_name` 'qpu.harmony' | 'qpu.aria-1' — Hardware for job to run on.
    - `usage` number — How much quota used.
  - `members` UserReport[] — A list of user reports.
    - `id` string — User ID.
    - `jobs` number — Number of user jobs.
    - `user_email` string — User email address.
    - `first_name` string — User first name.
    - `last_name` string — User last name.
    - `execution_time` number — User's execution time in milliseconds.
    - `quota` number — User's quota limit.
    - `quota_consumed` number — User's quota consumed.

---

[API](https://skmtc.net/ionq/apis/ionq-cloud-platform-api.md) · [All operations](https://skmtc.net/ionq/apis/ionq-cloud-platform-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ionq/ionq-cloud-platform-api/versions/0410071e1cd0/schema)
