Returns a paginated list of payments, sorted by creation date in
descending order (newest first). Use cursor-based pagination with
starting_after and ending_before to navigate through results.
Use your secret API key as the Bearer token. Test mode keys start with
fl_test_sk_ and live mode keys start with fl_live_sk_.
Authorization: Bearer fl_test_sk_abc123def456The API version to use for this request. Defaults to your account's
default version if not specified. Format: YYYY-MM-DD.
^\d{4}-\d{2}-\d{2}$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.
^pay_[a-zA-Z0-9-]+$A cursor for backward pagination. Provide the id of the first payment
in the current page to fetch the previous page of results.
^pay_[a-zA-Z0-9-]+$Filter payments by status.
pending, succeeded, failed, refunded Return payments created on or after this Unix timestamp (inclusive).
Return payments created before this Unix timestamp (exclusive).
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"