Transactions summary


The /reports/transactions-summary endpoint returns transaction totals for month-to-date, quarter-to-date, and year-to-date periods with comparisons to the prior equivalent periods.

GET /reports/transactions-summary

Query parameters

ParameterTypeDescription
baseCurrencystringTarget currency for conversion. Defaults to account base currency.
fix_fxbooleanUse fixed exchange rates.
regionstringFilter by region or country codes (space-separated).
currencystringFilter by currency codes (space-separated).
planstringFilter by plan group IDs (space-separated).
industrystringFilter by industry (space-separated).
data_sourcestringFilter by data source ID (space-separated).

Example response

200 OK
{
"currency": "usd",
"summary": {
"mtd": 95000,
"prev_mtd": 88000,
"qtd": 280000,
"prev_qtd": 260000,
"ytd": 520000,
"prev_ytd": 480000,
"mtd_change_pct": 7.95,
"qtd_change_pct": 7.69,
"ytd_change_pct": 8.33
}
}

Response fields

FieldTypeDescription
currencystringReporting currency
mtdnumberMonth-to-date net transactions (cents)
prev_mtdnumberPrevious month's equivalent period (cents)
qtdnumberQuarter-to-date net transactions (cents)
prev_qtdnumberPrevious quarter's equivalent period (cents)
ytdnumberYear-to-date net transactions (cents)
prev_ytdnumberPrevious year's equivalent period (cents)
mtd_change_pctfloatMonth-to-date percentage change vs prior
qtd_change_pctfloatQuarter-to-date percentage change vs prior
ytd_change_pctfloatYear-to-date percentage change vs prior