API Reference

List daily burn fee calculations

gethttps://api-sandbox.circle.com/v1/fees/redemption/dailyReports

  • Reference
  • Playground

Returns daily burn fee calculations. This endpoint returns up to 50 daily fee calculations in descending chronological order or pageSize, if provided.

Query parameters
feeType
string
Required

Fee calculation type

minimumFeeAmount
string

Burn fee calculations below this value are filtered.

currency
string

Queries beneficiary bank account currency. Default is USD.

from
date-time

Queries items created since the specified date-time (inclusive).

to
date-time

Queries items created before the specified date-time (inclusive).

pageBefore
string

A collection ID value used for pagination.

It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize.

The items will be returned in the natural order of the collection.

The resource will return the first page if neither pageAfter nor pageBefore are specified.

SHOULD NOT be used in conjuction with pageAfter.

pageAfter
string

A collection ID value used for pagination.

It marks the exclusive begin of a page. When provided, the collection resource will return the next n items after the id, with n being specified by pageSize.

The items will be returned in the natural order of the collection.

The resource will return the first page if neither pageAfter nor pageBefore are specified.

SHOULD NOT be used in conjuction with pageBefore.

pageSize
integer

Limits the number of items to be returned.

Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used.

If avoided, the collection will determine the page size itself.

Response
RequestChoose a language
ResponseChoose an example
1{
2  "data": [
3    {
4      "id": "b8627ae8-732b-4d25-b947-1df8f4007a29",
5      "fee": {
6        "amount": "3.14",
7        "currency": "USD"
8      },
9      "cumulatedPayoutAmount": {
10        "amount": "3.14",
11        "currency": "USD"
12      },
13      "cumulatedPaymentAmount": {
14        "amount": "3.14",
15        "currency": "USD"
16      },
17      "cumulatedNetAmount": {
18        "amount": "3.14",
19        "currency": "USD"
20      },
21      "valueDate": "2023-05-23",
22      "status": "scheduled",
23      "thresholdResetTimestamp": "2023-05-23T23:59:59.999Z",
24      "createDate": "",
25      "feeType": "net"
26    }
27  ]
28}
Did this page help you?
© 2023-2025 Circle Technology Services, LLC. All rights reserved.