Withdrawals

GET /withdrawals

Retrieve your withdrawals. Requires a valid API key sent with the x-api-key header.

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • code integer

      Response code

    • msg string

      Diagnostic message

    • result array[object]

      Withdrawal

      Hide result attributes Show result attributes
      • address string

        Address of withdrawal

      • Your unique Account ID

      • asset string

        Asset of withdrawal

      • time number

        Time of withdrawal

      • qty number

        Quantity of withdrawal

      • net number

        Net Quantity of withdrawal. Net Quantity = Quantity - Fee.

      • status string

        Status of withdrawal. Can be PENDING or COMPLETED.

      • id string

        Unique identifier of withdrawal.

      • qty_usd number

        USD quantity of withdrawal, at time of withdrawal.

      • Blockchain transaction associated with the withdrawal

        Hide transaction attributes Show transaction attributes
        • hash string

          Transaction hash

        • from string

          Sender of transaction

  • 503

    Error

    Hide response attributes Show response attributes object
GET /withdrawals
curl \
 -X GET https://api.everstrike.io/withdrawals \
 -H "x-api-key: $API_KEY"
Response examples (200)
{
  "code": 200,
  "msg": "string",
  "result": [
    {
      "qty": 0.01,
      "net": 0.009,
      "qty_usd": 1.3930651399,
      "manually_approved": false,
      "address": "0x9e80FA64F59CC0Ac3EEdaB8A698DcBc8435091A9",
      "asset": "ETH",
      "time": 1551127794034,
      "status": "ACTIVE",
      "customer_id": "5f9ca5f0380e11e9bf5191a076098e19"
    }
  ]
}
Response examples (503)
{
  "code": 503,
  "msg": "Invalid request",
  "result": {}
}