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"
}

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.

The response is of type object.