v1

latestOpenAPI 3.0.02026-07-26117342409.6 KB
Fiat Transfers

List Fiat Accounts

List all Fiat Accounts, optionally filtering and paging the results. The response includes an abbreviated FiatAccount object:

  • Beneficiary name and address details are excluded.
  • Only the last four (4) digits of the account number are included.

Use Get Fiat Account to retrieve the complete FiatAccount object.

The paginated results default to the maximum limit of 1,000 Fiat Accounts, unless otherwise specified with the limit parameter. Every paginated response contains a next_page field until the last page is reached. Pass the next_page value into the page_cursor field of the next request to retrieve the next page of results.

get/transfer/fiat-accounts

Query parameters

idsstring[]

Optionally filter by the UUIDs of the accounts. Limit 100.

ref_idsstring[]

Optionally filter by the client-specified IDs provided during account creation. Limit 100.

created_at.ltstring date-time

Include timestamps strictly less than lt. RFC3339 format, like 2006-01-02T15:04:05Z.

created_at.ltestring date-time

Include timestamps less than or equal to lte. RFC3339 format, like 2006-01-02T15:04:05Z.

created_at.eqstring date-time

Include timestamps exactly equal to eq. RFC3339 format, like 2006-01-02T15:04:05Z.

created_at.gtestring date-time

Include timestamps greater than or equal to gte. RFC3339 format, like 2006-01-02T15:04:05Z.

created_at.gtstring date-time

Include timestamps strictly greater than gt. RFC3339 format, like 2006-01-02T15:04:05Z.

limitinteger

Number of results to return. Defaults to 100 if no limit is provided. Maximum 1000.

order'DESC' | 'ASC'

Return items in ascending (ASC) or descending (DESC) order. Defaults to DESC.

order_by'CREATED_AT'

The specific method by which the returned results will be ordered. Defaults to CREATED_AT.

page_cursorstring

Optional: Cursor for getting the next page of results.

include_deletedboolean

Used to include deleted accounts in the response.

Response

A successful response.

next_page_cursorstring