List Sponsored Fees

GET /fee-sponsors/{feeSponsorId}/fees

Retrieves the list of all fees paid by a fee sponsor.

Required Permissions

Name
Conditions

FeeSponsors:Read

Always Required

Parameters

Path parameters

Path parameter
Description

feeSponsorId

ID of the fee sponsor.

Response

Field
Description
Type - Optional

items

List of sponsored fees.

nextPageToken

Opaque token used to retrieve the next page of items. undefined if end of the list.

String (optional)

Field
Description
Type - Optional

id

ID of the sponsored fee.

String

sponsoreeId

Id of the entity being sponsored, e.g. walletId.

String

requestId

Id of the request that was sponsored

String

status

Pending or Confirmed

String

fee

Fee amount that was paid for the request

String

dateRequested

ISO 8601 date string when the request was created.

String

dateConfirmed

ISO 8601 date string when the request was confirmed.

String

200 Success

{
  "items": [
    {
      "id": "sf-xxxxx-xxxxx-xxxxxxxxxxxxxxx",
      "sponsoreeId": "wa-xxxxx-xxxxx-xxxxxxxxxxxxxxx",
      "requestId": "xfr-xxxxx-xxxxx-xxxxxxxxxxxxxxx",
      "status": "Confirmed",
      "fee": "10050",
      "dateRequested": "2025-03-26T13:55:53.218Z",
      "dateConfirmed": "2025-03-26T13:55:54.000Z"
    }
  ]
}

Last updated