---
title: "Get orders summary for issuer (across all enterprises)"
method: GET
path: "/api/stablecoin/v1/issuer/orders-summary"
tags: ["Stablecoin"]
---

# Get orders summary for issuer (across all enterprises)

`GET /api/stablecoin/v1/issuer/orders-summary`

Returns aggregated order amounts and counts for all assets issued by the authenticated enterprise,
aggregated across all enterprises that hold those assets.
Amounts are returned as strings in lowest denomination (no decimal formatting).
By default, includes all non-failed orders (created, pending, and fulfilled).
Use the optional status parameter to filter by specific order statuses.

## Query parameters

- `stablecoin` union
  - string[]
  - 'gousd' | 'usd1' | 'sofid' | 'cusd' | 'fyusd' | 'qxmp' | 'scaasacme'
- `chain` string
- `status` union
  - string[]
  - 'created' | 'pending' | 'fulfilled' | 'pendingApproval' | 'rejected'
- `groupBy` 'hour' | 'day' | 'week' | 'month' | 'year'
- `fromDate` string, date-time
- `toDate` string, date-time
- `clientEnterpriseId` union
  - string
  - string[]

## Response `200`

OK

- GetOrdersSummaryResponse
  - `byAsset` object, required — Breakdown by individual asset keyed by token identifier
  - `timeSeries` object[]
    - `period` string, required — ISO8601 date string representing start of period
    - `mintAmount` string, required — Total mint amount in lowest denomination
    - `mintCount` number, required — Number of mint orders
    - `burnAmount` string, required — Total burn/redeem amount in lowest denomination
    - `burnCount` number, required — Number of burn/redeem orders

## Other responses

- `400` — Bad Request
- `404` — Not Found
- `500` — Internal Server Error

---

[API](https://skmtc.net/bitgo/apis/bitgo-api.md) · [All operations](https://skmtc.net/bitgo/apis/bitgo-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/bitgo/bitgo-api/revisions/e445c15e5bee/schema)
