GET
/
transfer
/
fiat-accounts
/
{id}
Get Fiat Account
curl --request GET \
  --url https://api.paxos.com/v2/transfer/fiat-accounts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "ref_id": "<string>",
  "identity_id": "<string>",
  "account_id": "<string>",
  "fiat_account_owner": {
    "person_details": {
      "first_name": "<string>",
      "last_name": "<string>"
    },
    "institution_details": {
      "name": "<string>"
    }
  },
  "fiat_network_instructions": {
    "wire": {
      "account_number": "<string>",
      "fiat_account_owner_address": {
        "country": "<string>",
        "address1": "<string>",
        "address2": "<string>",
        "city": "<string>",
        "province": "<string>",
        "zip_code": "<string>"
      },
      "routing_details": {
        "routing_number_type": "ABA",
        "routing_number": "<string>",
        "bank_name": "<string>",
        "bank_address": {
          "country": "<string>",
          "address1": "<string>",
          "address2": "<string>",
          "city": "<string>",
          "province": "<string>",
          "zip_code": "<string>"
        }
      },
      "intermediary_routing_details": {
        "routing_number_type": "ABA",
        "routing_number": "<string>",
        "bank_name": "<string>",
        "bank_address": {
          "country": "<string>",
          "address1": "<string>",
          "address2": "<string>",
          "city": "<string>",
          "province": "<string>",
          "zip_code": "<string>"
        }
      }
    },
    "cbit": {
      "wallet_address": "<string>"
    },
    "dbs_act": {
      "account_number": "<string>"
    },
    "cubix": {
      "account_id": "<string>"
    },
    "scb": {
      "account_number": "<string>"
    }
  },
  "status": "PENDING",
  "metadata": {},
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}
OAuth Scope
transfer:read_fiat_account

Authorizations

Authorization
string
header
required

Paxos APIs use OAuth 2 with the client credentials grant flow.

Token URLs:

Learn more in the API credentials guide →

Path Parameters

id
string
required

The Paxos fiat account ID (UUID). The Fiat Account ID (id) is provided in the response of the Create Fiat Account. Use this ID to retrieve the instructions using Get Fiat Account & List Fiat Accounts.

Query Parameters

include_deleted
boolean

Used to include deleted accounts in the response.

Response

200 - application/json

A successful response.

id
string
required

The Paxos FiatAccount ID (UUID).

fiat_network_instructions
object
required
status
enum<string>
required
Available options:
PENDING,
APPROVED,
REJECTED
created_at
string<date-time>
required

The time at which this FiatAccount was created.

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 initiating transfers on behalf of their end users.

fiat_account_owner
object
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.

updated_at
string<date-time>

The time at which this FiatAccount record was most recently updated.