---
title: "List Fiat Accounts"
method: GET
path: "/transfer/fiat-accounts"
tags: ["Fiat Transfers"]
---

# List Fiat Accounts

`GET /transfer/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](#operation/GetFiatAccount) 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.

## Query parameters

- `ids` string[]
- `ref_ids` string[]
- `created_at.lt` string, date-time
- `created_at.lte` string, date-time
- `created_at.eq` string, date-time
- `created_at.gte` string, date-time
- `created_at.gt` string, date-time
- `limit` integer
- `order` 'DESC' | 'ASC'
- `order_by` 'CREATED_AT'
- `page_cursor` string
- `include_deleted` boolean

## Response `200`

A successful response.

- ListFiatAccountsResponse
  - `items` FiatAccount[]
    - `id` string, required — The Paxos FiatAccount ID (UUID).
    - `ref_id` string — The optional client-specified ID (for idempotence).
    - `identity_id` string — The Paxos Identity (`identity_id`) of the user's FiatAccount.
    - `account_id` string — The Paxos Account (`account_id`) of the user's FiatAccount. Required only for customers with [3rd-Party integrations](https://docs.paxos.com/crypto-brokerage/ledger-type#fiat-and-crypto-subledger) initiating transfers on behalf of their end users.
    - `fiat_account_owner` FiatAccountOwner
      - `person_details` FiatAccountOwnerPersonDetails
        - `first_name` string, required
        - `last_name` string, required
      - `institution_details` FiatAccountOwnerInstitutionDetails
        - `name` string, required
    - `fiat_network_instructions` FiatNetworkInstructions, required
      - `wire` FiatNetworkInstructionsWire
        - `account_number` string, required — The FiatAccount owner's bank account number.
        - `fiat_account_owner_address` MailingAddress, required — A mailing address.
          - `country` string, required
          - `address1` string
          - `address2` string
          - `city` string
          - `province` string
          - `zip_code` string
        - `routing_details` FiatNetworkInstructionsWireRoutingDetails, required
          - `routing_number_type` 'ABA' | 'SWIFT', required
          - `routing_number` string, required — The routing number.
          - `bank_name` string, required — The name of the bank.
          - `bank_address` MailingAddress, required — A mailing address.
            - `country` string, required
            - `address1` string
            - `address2` string
            - `city` string
            - `province` string
            - `zip_code` string
        - `intermediary_routing_details` FiatNetworkInstructionsWireRoutingDetails
          - `routing_number_type` 'ABA' | 'SWIFT', required
          - `routing_number` string, required — The routing number.
          - `bank_name` string, required — The name of the bank.
          - `bank_address` MailingAddress, required — A mailing address.
            - `country` string, required
            - `address1` string
            - `address2` string
            - `city` string
            - `province` string
            - `zip_code` string
      - `cbit` FiatNetworkInstructionsCbit
        - `wallet_address` string, required — The wallet address of the CBIT account.
      - `dbs_act` FiatNetworkInstructionsDbsAct
        - `account_number` string, required — The account number of the DBS account.
      - `cubix` FiatNetworkInstructionsCubix
        - `account_id` string, required — The uuid account id of the CUBIX account.
      - `scb` FiatNetworkInstructionsScb
        - `account_number` string, required — The account number of the StandChart account.
      - `rtp` FiatNetworkInstructionsRtp
        - `account_number` string, required — The FiatAccount owner's bank account number.
        - `fiat_account_owner_address` MailingAddress — A mailing address.
          - `country` string, required
          - `address1` string
          - `address2` string
          - `city` string
          - `province` string
          - `zip_code` string
        - `routing_details` FiatNetworkInstructionsRtpRoutingDetails, required
          - `routing_number` string, required — The routing number.
          - `bank_name` string — The name of the bank.
          - `bank_address` MailingAddress — A mailing address.
            - `country` string, required
            - `address1` string
            - `address2` string
            - `city` string
            - `province` string
            - `zip_code` string
    - `status` 'PENDING' | 'APPROVED' | 'REJECTED', required
    - `metadata` object — Optional client-specified metadata. Up to 6 key/value pairs may be returned. Each key and value must be less than or equal to 100 characters.
    - `created_at` string, date-time, required — The time at which this FiatAccount was created.
    - `updated_at` string, date-time — The time at which this FiatAccount record was most recently updated.
  - `next_page_cursor` string

---

[API](https://skmtc.net/paxos/apis/paxos-api.md) · [All operations](https://skmtc.net/paxos/apis/paxos-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/paxos/paxos-api/revisions/0687ca8c9a8d/schema)
