Assets

GET /assets

Retrieve a list of assets supported by Everstrike.

Responses

GET /assets
curl \
 -X GET https://api.everstrike.io/assets
Response examples (200)
{
  "code": 200,
  "msg": "string",
  "result": {
    "ETH": {
      "key": "ETH",
      "name": "Ethereum",
      "platform": "ETHEREUM",
      "precision": 10,
      "display_precision": 4,
      "confirmations": 12,
      "usd_price": 1440.2,
      "withdrawable": true,
      "is_token": false,
      "stablecoin": false,
      "fees": {
        "withdrawal": 0.001,
        "deposit": 0.0
      },
      "filters": {
        "qty": {
          "filter_type": "LOT_SIZE",
          "min_qty": 0.001,
          "max_qty": 1000,
          "tick_size": 0.001
        },
        "price": {
          "filter_type": "PRICE_FILTER",
          "min_qty": 0.01,
          "max_qty": 1000000000,
          "tick_size": 0.01
        }
      }
    }
  }
}
Response examples (503)
{
  "code": 503,
  "msg": "Invalid request",
  "result": {}
}