v1

latestOpenAPI 3.1.02026-07-241653251.3 MB
Deposits

List fiat accounts

Retrieves a list of all fiat accounts. You must include your participant_code in the reference field with any deposit to ensure that funds can be allocated correctly to your participant.

get/deposits/fiat_accounts

Headers

X-SCX-SIGNEDstring required

HMAC-SHA256 signature of the request, base64-encoded. See the Authentication guide for the exact signing formula.

X-SCX-TIMESTAMPstring required
Example:1678901234

Current Unix timestamp in seconds. Must be within 60 seconds of server time or the request is rejected.

Response

Successfully retrieved paginated list of fiat accounts.

messageobject

Map of fiat asset code to the list of deposit accounts available for that asset. Keys present depend on the environment and the requesting participant — possible keys include USD, EUR, GBP, JPY, CAD, MXN.

Example response

{
  "message": {
    "USD": [
      {
        "type": "united_states_wire",
        "shortName": "Cross River Bank",
        "bankName": "Cross River Bank",
        "bankPhysicalAddress": "885 Teaneck Road, Teaneck, NJ 07666",
        "accountNumber": "120275918106",
        "routingNumber": "021214891",
        "recipientName": "Zero Hash LLC Customer Trust",
        "recipientPhysicalAddress": "327 N. Aberdeen St., FL 1, Chicago, IL 60607",
        "reference": "ABCDEF",
        "allowedWireTypes": [
          "retail",
          "institutional"
        ]
      }
    ]
  }
}