Assets

GET /assets

Retrieve a list of assets supported by Everstrike.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • code integer

      Response code

    • msg string

      Diagnostic message

    • result object

      Request result

      Hide result attribute Show result attribute object
      • ETH object

        Information about asset

        Hide ETH attributes Show ETH attributes object
        • key string

          Symbol of asset

        • name string

          Name of asset

        • description string

          Description of asset

        • precision integer

          Precision of asset

        • display_precision integer

          Display precision of asset. Used for number display on the Everstrike frontend.

        • confirmations integer

          Amount of blockchain confirmations required for deposits made with this asset.

        • platform string

          Platform that the asset belongs to

        • is_token boolean

          Is the asset a token?

        • withdrawable boolean

          Is the asset withdrawable?

        • min_withdrawal number

          Minimum withdrawal

        • is_special_commission_asset boolean

          Does holding the asset provide discounts on commissions?

        • stablecoin boolean

          Is the asset a stablecoin?

        • fees object

          Deposit/withdrawal fees

          Hide fees attributes Show fees attributes object
          • withdrawal number

            Withdrawal fee

          • deposit number

            Deposit fee

        • filters object

          Tick size and minimum quantity

          Hide filters attributes Show filters attributes object
          • qty object

            Quantity filter

            Hide qty attributes Show qty attributes object
            • filter_type string

              Type of filter

            • min_qty number

              Minimum deposit

            • max_qty number

              Maximum deposit

            • tick_size number

              Tick size

          • price object

            Price filter

            Hide price attributes Show price attributes object
            • filter_type string

              Type of filter

            • min_price number

              Minimum price

            • max_price number

              Maximum price

            • tick_size number

              Tick size

        • usd_price number

          USD price of asset. Used for display purposes on the Everstrike frontend. Should not be relied on.

  • 503 application/json

    Error

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