e445c15e5bee
Get orders summary for enterprise
Returns aggregated order amounts and counts by asset. 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.
Path parameters
Enterprise id
Query parameters
Stablecoin name(s) to filter across all chains
Blockchain network identifier to filter summary
Order processing status(es) to filter summary - accepts only user-facing statuses
Time period grouping for time-series data. When provided, returns timeSeries array in response.
Start date for time-series data (inclusive). Defaults to 1 year ago if groupBy is provided.
End date for time-series data (inclusive). Defaults to current timestamp if groupBy is provided.
Response
OK
Example response
{
"timeSeries": [
{
"period": "2024-01-01T00:00:00.000Z",
"mintAmount": "1000000000000000000000",
"mintCount": 5,
"burnAmount": "500000000000000000000",
"burnCount": 3
}
]
}