latestOpenAPI 3.0.32026-08-224982,0272.8 MB

e445c15e5bee

Stablecoin

Get orders summary for issuer (across all enterprises)

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.

get/api/stablecoin/v1/issuer/orders-summary

Query parameters

string[]
OR
'gousd' | 'usd1' | 'sofid' | 'cusd' | 'fyusd' | 'qxmp' | 'scaasacme'

Stablecoin name(s) to filter across all chains

chainstring
Example:hteth

Blockchain network identifier to filter summary

string[]
OR
'created' | 'pending' | 'fulfilled' | 'pendingApproval' | 'rejected'

Order processing status(es) to filter summary - accepts only user-facing statuses

groupBy'hour' | 'day' | 'week' | 'month' | 'year'
Example:month

Time period grouping for time-series data. When provided, returns timeSeries array in response.

fromDatestring date-time
Example:2024-01-01T00:00:00.000Z

Start date for time-series data (inclusive). Defaults to 1 year ago if groupBy is provided.

toDatestring date-time
Example:2024-12-31T23:59:59.999Z

End date for time-series data (inclusive). Defaults to current timestamp if groupBy is provided.

string
OR
string[]

Enterprise ID(s) of the client enterprise(s) to filter summary data

Response

OK

byAssetobject required

Breakdown by individual asset keyed by token identifier

Example response

{
  "timeSeries": [
    {
      "period": "2024-01-01T00:00:00.000Z",
      "mintAmount": "1000000000000000000000",
      "mintCount": 5,
      "burnAmount": "500000000000000000000",
      "burnCount": 3
    }
  ]
}