GET
/v1/application_feesList application fees
Lists application fees previously collected by your platform. Use charge and created to filter the results, and use cursor parameters to paginate through fees sorted from newest to oldest.
- RetriesRetries up to 2×, 500ms backoff, 30s timeout.
chargestringoptional
Returns only application fees collected for the specified charge. Maximum 5,000 characters.
createdobjectoptional
Filters fees by creation time using a Unix timestamp or a range with `gt`, `gte`, `lt`, or `lte`.
ending_beforestringoptional
Cursor identifying the object before the page you want to retrieve. Maximum 5,000 characters.
expandarray<string>optional
Fields to expand in each returned application fee.
limitintegeroptional
Number of fees to return, from 1 to 100. Defaults to 10 when omitted.
starting_afterstringoptional
Cursor identifying the object after the page you want to retrieve. Maximum 5,000 characters.
200Returns a paginated list of application fee objects sorted with the most recent fees first, including the list URL and a `has_more` indicator.
dataarray<PlatformFee>required
has_morebooleanrequired
True if this list has another page of items after this one that can be fetched.
objectstringrequired
String representing the object's type. Objects of the same type share the same value. Always has the value `list`.
urlstringrequired
The URL where this list can be accessed.
defaultError response.
errorobjectrequired
Error handling
limit must be between 1 and 100 when provided, and created must be a Unix timestamp or a range using gt, gte, lt, or lte. charge, starting_after, and ending_before must be valid identifiers no longer than 5,000 characters.