Transfers

List account's transfers, i.e. deposits and withdrawals

GEThttps://api.testnet.paradex.trade/v1/transfers
Authorization
Query parameters
Response

OK

Body
nextstring

The pointer to fetch next set of records (null if there are no records left)

Example: "eyJmaWx0ZXIiMsIm1hcmtlciI6eyJtYXJrZXIiOiIxNjc1NjUwMDE3NDMxMTAxNjk5N="
prevstring

The pointer to fetch previous set of records (null if there are no records left)

Example: "eyJmaWx0ZXIiOnsiTGltaXQiOjkwfSwidGltZSI6MTY4MTY3OTgzNzk3MTMwOTk1MywibWFya2VyIjp7Im1zMjExMD=="
resultsarray of responses.TransferResult (object)

List of transaction responses

Request
const response = await fetch('https://api.testnet.paradex.trade/v1/transfers', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "next": "eyJmaWx0ZXIiMsIm1hcmtlciI6eyJtYXJrZXIiOiIxNjc1NjUwMDE3NDMxMTAxNjk5N=",
  "prev": "eyJmaWx0ZXIiOnsiTGltaXQiOjkwfSwidGltZSI6MTY4MTY3OTgzNzk3MTMwOTk1MywibWFya2VyIjp7Im1zMjExMD==",
  "results": [
    {
      "account": 2.073967317963419e+75,
      "amount": "100",
      "bridge": "STARKGATE",
      "created_at": 1681497002041,
      "external_account": 2.073967317963419e+75,
      "external_chain": "ETHEREUM",
      "external_txn_hash": 2.073967317963419e+75,
      "failure_reason": "Gas fee too low",
      "id": "123456789",
      "kind": "DEPOSIT",
      "last_updated_at": 1681497002041,
      "socialized_loss_factor": "0",
      "status": "PENDING",
      "token": "USDC",
      "txn_hash": 2.073967317963419e+75
    }
  ]
}

Last updated