POST
/
sandbox
/
fiat-deposits
Initiate Sandbox Fiat Deposit
curl --request POST \
  --url https://api.paxos.com/v2/sandbox/fiat-deposits \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "amount": "10.00",
  "asset": "USD",
  "memo_id": "3CFXQSCMSPLFHXLZ",
  "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"
        }
      }
    }
  },
  "fiat_account_owner": {
    "institution_details": {
      "name": "SomeCorp, Inc."
    }
  }
}'
{}

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.