GET
/v1/transfersList all transfers
Lists transfers sent to connected accounts, ordered from newest to oldest. Filter by destination, transfer_group, or created, and use cursor parameters with limit to paginate the results.
- RetriesRetries up to 2×, 500ms backoff, 30s timeout.
createdobjectoptional
Filter transfers by creation time using a Unix timestamp or a range with `gt`, `gte`, `lt`, or `lte`.
destinationstringoptional
Return only transfers sent to the specified connected account ID. Must be no longer than 5000 characters.
ending_beforestringoptional
Cursor identifying the first object to exclude when retrieving the previous page.
expandarray<string>optional
Fields to expand in each returned transfer. Each value must be a string no longer than 5000 characters.
limitintegeroptional
Maximum number of transfers to return. Must range from 1 to 100. Defaults to 10 when omitted.
starting_afterstringoptional
Cursor identifying the last object to exclude when retrieving the next page.
transfer_groupstringoptional
Return only transfers assigned to the specified transfer group. Must be no longer than 5000 characters.
200Returns a paginated list containing transfer objects, a `has_more` indicator, the list object type, and the list URL.
dataarray<Transfer>required
Details about each object.
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 supplied. destination and transfer_group must be strings no longer than 5000 characters, and created must be a Unix timestamp or a valid range specification.