List payments
Returns a paginated list of payments, sorted by creation date in
descending order (newest first). Use cursor-based pagination with
starting_after to navigate through results.
Authorizations
Use your secret API key as the Bearer token. Test (sandbox) mode keys
start with fl_test_sk_ and live mode keys start with fl_live_sk_.
Both modes use the same API host; the mode is determined by the key.
Authorization: Bearer fl_test_sk_abc123def456Query Parameters
Maximum number of payments to return. Accepts values between 1 and 100. Defaults to 10.
1 <= x <= 100A cursor for forward pagination. Provide the id of the last payment
in the previous page to fetch the next page of results. Must be a
full payment ID returned by a prior list response.
^pay_[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$Filter payments by status.
pending, succeeded, failed, requires_action, expired, canceled Return payments created on or after this timestamp (inclusive), expressed as a Unix epoch in seconds.
Return payments created before this timestamp (exclusive), expressed as a Unix epoch in seconds.
Response
A paginated list of payments.
A paginated list of Payment objects.
Object type; always list.
list "list"
An array of payment objects.
Whether there are additional results beyond this page. If true,
use the id of the last item in data as the starting_after
cursor to fetch the next page.
true
The URL for this list endpoint.
"/v1/payments"
