v1

latestOpenAPI 3.1.02026-07-241653251.3 MB
Transfers

List transfers

Retrieves a list of objects containing information about transfers. This endpoint supports pagination and filtering based on the below parameters. Results are limited to the last 2 months.

get/transfers

Query parameters

pagenumber

Filters for a specific page (pagination)

page_sizenumber

Filter for number of transfer objects to be included on each page

to_participant_codestring
Example:CUST01

Filter for to_participant_code in receipt of the transfer

from_participant_codestring
Example:CUST02

Filter for from_participant_code the transfer was sent from

requested_timestamp[gt]number

Filter for greater than a given timestamp

requested_timestamp[gte]number

Filter for greater than or equal to a given timestamp

requested_timestamp[e]number

Filter for equal to a given timestamp

requested_timestamp[lt]number

Filter for less than a given timestamp

requested_timestamp[lte]number

Filter for less than or equal to a given timestamp

client_transfer_idstring

Filter for client_transfer_id associated with the transfer

from_account_groupstring
Example:PLAT01

Filter by the source account group of the transfer.

from_account_labelstring
Example:LABEL01

Filter by the source account label of the transfer.

to_account_groupstring
Example:PLAT01

Filter by the destination account group of the transfer.

to_account_labelstring
Example:LABEL02

Filter by the destination account label of the transfer.

currency'USDC.OPTIMISM' | 'USDC.SUI' | 'DOT' | 'FIL' | 'PYUSD.ETH' | 'TRX' | 'ZRX' | 'DAI.ETH' | 'USDC.WORLDCHAIN' | 'USDP' | 'USDT.BSC' | 'USDT.CELO' | 'PEPE.ETH' | 'SAND' | 'USDC.DOTHUB' | 'USDC.SEI' | 'USDC.SOL' | 'USDC.ZKSYNC' | 'ENA.ETH' | 'MANA.ETH' | 'PYTH.SOL' | 'SOL' | 'USDC.BASE' | 'USDC.CELO' | 'USDT' | 'ADA' | 'INJ.ETH' | 'MATIC.POLYGON' | 'PAXG' | 'USD' | 'AAVE.ETH' | 'ALGO' | 'EURC.XLM' | 'KNC.ETH' | 'PNUT.SOL' | 'SHIB' | 'BCH' | 'DOGE' | 'EGLD' | 'JTO.SOL' | 'UNI.ETH' | 'USDC' | 'USDC.ARBITRUM' | 'ONDO.ETH' | 'PENGU.SOL' | 'USD' | 'WLFI.ETH' | 'XLM' | 'APT' | 'CC' | 'ETH.OPTIMISM' | 'ETH.WORLDCHAIN' | 'LDO.ETH' | 'MORPHO.ETH' | 'SEI' | 'ETH.ZKSYNC' | 'USDC.AVAX' | 'USDC.XLM' | 'USDT.DOTHUB' | 'USDT.SOL' | 'MANA' | 'USDC.ALGO' | 'MATIC.ETH' | 'NEAR' | 'UNI' | 'USDT.ARBITRUM' | 'USDT.AVAX' | 'OMG' | 'ARB.ARBITRUM' | 'COMP.ETH' | 'GRT.ETH' | 'USDC.POLYGON' | 'AVAX' | 'AAVE' | 'CELO' | 'PYUSD.SOL' | 'PAXG.ETH' | 'USDC.MONAD' | 'BAT' | 'COMP' | 'ETH.ARBITRUM' | 'ETH.BASE' | 'OP.OPTIMISM' | 'TRUMP.SOL' | 'ENJ.ETH' | 'SUI' | 'USDT.ETH' | 'USDT.OPTIMISM' | 'USDT.TRX' | 'USDT.XPL' | 'OMG.ETH' | 'XRP' | 'HBAR' | 'USDC.APT' | 'USDC.ETH' | 'BNB' | 'ATOM' | 'BAT.ETH' | 'GRT' | 'LINK.ETH' | 'USDP.SOL' | 'ZK.ZKSYNC' | 'BONK.SOL' | 'KNC' | 'TIA' | 'ZRO.ETH' | 'ZRX.ETH' | 'PUMP.SOL' | 'USD' | 'XTZ' | 'CRV.ETH' | 'GALA.ETH' | 'TON' | 'USDT.POLYGON' | 'WBTC.ETH' | 'XPL' | 'BTC' | 'MON' | 'SHIB.ETH' | 'USDC.BSC' | 'WLD.WORLDCHAIN' | 'W.SOL' | 'LTC' | 'RLUSD.ETH' | 'WBTC' | 'LINK' | 'USDCX.CANTON' | 'ETH' | 'WIF.SOL' | 'APE.ETH' | 'EURC' | 'MKR.ETH' | 'RLUSD.XRP'

The underlying asset in the trading pair. E.g. BTC in the pair BTC/USD.

Example:BTC

Filter by the asset code of the transfer, e.g. USD.

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 transfers with optional filters: page, page_size, to_participant_code, from_participant_code, requested_timestamp filters, client_transfer_id.

pagenumber
page_sizenumber
total_pagesnumber
countnumber

Example response

{
  "message": [
    {
      "id": 1152665,
      "created_at": "2026-05-04T11:58:50.115Z",
      "updated_at": "2026-05-04T11:58:50.115Z",
      "status": "approved",
      "from_participant_code": "ABCDEF",
      "from_account_group": "ABCDEF",
      "from_account_label": "general",
      "to_participant_code": "DEMO01",
      "to_account_group": "ABCDEF",
      "to_account_label": "general",
      "asset": "USD",
      "amount": "100.00",
      "client_transfer_id": "e6afed46-301e-46ee-a339-e897e9855c3a",
      "parent_link_id_source": "LINK_SOURCE_PREFUNDED_TRANSFER"
    }
  ],
  "page": 1,
  "page_size": 15,
  "total_pages": 1,
  "count": 1
}