POST
/
transfer
/
fiat-accounts
Create Fiat Account
curl --request POST \
  --url https://api.paxos.com/v2/transfer/fiat-accounts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "identity_id": "54385e67-d7ef-40d1-b488-ceda6dd9b264",
  "fiat_network_instructions": {
    "wire": {
      "account_number": "12345678",
      "routing_details": {
        "routing_number": "031302971",
        "bank_name": "Customers Bank",
        "bank_address": {
          "country": "USA"
        }
      },
      "fiat_account_owner_address": {
        "address1": "456 Main Street",
        "city": "NY",
        "country": "USA"
      }
    }
  },
  "fiat_account_owner": {
    "person_details": {
      "first_name": "Jane",
      "last_name": "Doe"
    }
  }
}'
{
  "id": "dde1b3c5-d02a-48f6-8d11-16b4f532ea49",
  "ref_id": "test_ref_id_1",
  "identity_id": "c6ea91da-8f33-4545-9bdf-3cf29b4041d7",
  "account_id": "91f91384-30d4-46c2-9118-7f3cec676a2c",
  "fiat_account_owner": {
    "person_details": {
      "first_name": "Jane",
      "last_name": "Doe"
    },
    "fiat_network_instructions": {
      "wire": {
        "account_number": "12345678",
        "fiat_account_owner_address": {
          "country": "USA",
          "address1": "456 Main Street, NY",
          "city": "New York",
          "province": "NY",
          "address2": "",
          "zip_code": "10101"
        },
        "routing_details": {
          "routing_number_type": "ABA",
          "routing_number": "123456789",
          "bank_name": "Customers Bank",
          "bank_address": {
            "country": "USA",
            "address1": "123 Bank Street",
            "city": "New York",
            "province": "NY",
            "address2": "",
            "zip_code": "10101"
          }
        }
      },
      "status": "PENDING",
      "metadata": {
        "test_ref_id": "47aa7538-e2d2-47b3-8600-44a7965dd357",
        "transaction_attempt": 1
      }
    }
  },
  "created_at": "2023-09-24T14:15:22Z"
}

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 →

Body

application/json

Response

200
application/json

A successful response.

The response is of type object.