Withdrawals
Retrieve your withdrawals. Requires a valid API key sent with the x-api-key header.
GET /withdrawals
curl \
-X GET https://api.testnet.everstrike.io/withdrawals \
-H "x-api-key: $API_KEY"
Response examples (200)
{
"code": 200,
"msg": "null",
"result": [
{
"net": 0.009,
"qty": 0.01,
"time": 1551127794034,
"asset": "ETH",
"status": "ACTIVE",
"address": 904896849601772900000000000000000000000000000000,
"qty_usd": 1.3930651399,
"customer_id": "5f9ca5f0380e11e9bf5191a076098e19",
"manually_approved": false
}
]
}
Response examples (503)
{
"code": 503,
"msg": "Invalid request",
"result": {}
}