Withdrawals

GET /withdrawals

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

Responses

GET /withdrawals
curl \
 -X GET https://api.everstrike.io/withdrawals \
 -H "x-api-key: $API_KEY"
Response example (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 example (503)
{
  "code": 503,
  "msg": "Invalid request",
  "result": {}
}