General Endpoints

Ping

get

Ping

Responses
200
OK
application/json
get
GET /api/v1/ping HTTP/1.1
Host: api-v1.1dex.com
Accept: */*
200

OK

{
  "data": {
    "timestamp": 1
  }
}

Get system information

get

Get system information

Responses
200
OK
application/json
get
GET /api/v1/system-info HTTP/1.1
Host: api-v1.1dex.com
Accept: */*
200

OK

{
  "data": {
    "app_contract": "text",
    "pay_eos_account": "text",
    "token_contract": "text",
    "version": "text"
  }
}

List all trading pools

get

Get a list of all trading pools

Query parameters
base_coinstringOptional

base coin

quote_coinstringOptional

quote coin

Responses
200
pool info
application/json
get
GET /api/v1/pools HTTP/1.1
Host: api-v1.1dex.com
Accept: */*
200

pool info

{
  "data": [
    {
      "base_coin": "text",
      "base_coin_precision": 1,
      "change": "text",
      "change_rate": 1,
      "high": "text",
      "last_price": "text",
      "low": "text",
      "pool_id": 1,
      "price_precision": 1,
      "quote_coin": "text",
      "quote_coin_precision": 1,
      "symbol": "text",
      "trades": 1,
      "turnover": "text",
      "updated_at": "text",
      "volume": "text"
    }
  ]
}

Get pool details

get

Get detailed information about a specific trading pool

Path parameters
symbolOrIdstringRequired

pool symbol or pool id

Responses
200
OK
application/json
get
GET /api/v1/pools/{symbolOrId} HTTP/1.1
Host: api-v1.1dex.com
Accept: */*
200

OK

{
  "data": {
    "asking_time": "text",
    "base_coin": "text",
    "base_coin_precision": 1,
    "base_contract": "text",
    "base_symbol": "text",
    "maker_fee_rate": 1,
    "max_flct": 1,
    "min_amount": "text",
    "pool_id": 1,
    "pool_stats": {
      "base_coin": "text",
      "base_coin_precision": 1,
      "change": "text",
      "change_rate": 1,
      "high": "text",
      "last_price": "text",
      "low": "text",
      "pool_id": 1,
      "price_precision": 1,
      "quote_coin": "text",
      "quote_coin_precision": 1,
      "symbol": "text",
      "trades": 1,
      "turnover": "text",
      "updated_at": "text",
      "volume": "text"
    },
    "price_precision": 1,
    "quote_coin": "text",
    "quote_coin_precision": 1,
    "quote_contract": "text",
    "quote_symbol": "text",
    "status": 1,
    "symbol": "text",
    "taker_fee_rate": 1,
    "trading_time": "text"
  }
}

Get support tokens

get

Get support tokens

Responses
200
token list
application/json
get
GET /api/v1/tokens HTTP/1.1
Host: api-v1.1dex.com
Accept: */*
200

token list

{
  "data": [
    {
      "decimals": 1,
      "eos_contract": "text",
      "exsat_decimals": 1,
      "exsat_token_address": "text",
      "icon_url": "text",
      "info": {
        "circulating_supply": "text",
        "fully_diluted_market_cap": "text",
        "historical_high": "text",
        "historical_high_date": "text",
        "historical_low": "text",
        "historical_low_date": "text",
        "intro": "text",
        "issue_date": "text",
        "links": [
          {
            "name": "text",
            "url": "text"
          }
        ],
        "market_capitalization": "text",
        "market_dominance": "text",
        "maximum_supply": "text",
        "rank": "text",
        "total_supply": "text",
        "volume": "text",
        "volume_div_market_cap": "text"
      },
      "name": "text",
      "support_chain": [
        {
          "chain_id": 1,
          "chain_name": "text",
          "exsat_withdraw_fee": "text",
          "min_deposit_amount": "text",
          "min_withdraw_amount": "text",
          "permission_id": 1,
          "withdraw_fee": "text"
        }
      ],
      "symbol": "text"
    }
  ]
}

Get token info

get

Get token info

Path parameters
symbolstringRequired

coin symbol,ps BTC

Responses
200
token info
application/json
get
GET /api/v1/token/{symbol} HTTP/1.1
Host: api-v1.1dex.com
Accept: */*
200

token info

{
  "data": {
    "decimals": 1,
    "eos_contract": "text",
    "exsat_decimals": 1,
    "exsat_token_address": "text",
    "icon_url": "text",
    "info": {
      "circulating_supply": "text",
      "fully_diluted_market_cap": "text",
      "historical_high": "text",
      "historical_high_date": "text",
      "historical_low": "text",
      "historical_low_date": "text",
      "intro": "text",
      "issue_date": "text",
      "links": [
        {
          "name": "text",
          "url": "text"
        }
      ],
      "market_capitalization": "text",
      "market_dominance": "text",
      "maximum_supply": "text",
      "rank": "text",
      "total_supply": "text",
      "volume": "text",
      "volume_div_market_cap": "text"
    },
    "name": "text",
    "support_chain": [
      {
        "chain_id": 1,
        "chain_name": "text",
        "exsat_withdraw_fee": "text",
        "min_deposit_amount": "text",
        "min_withdraw_amount": "text",
        "permission_id": 1,
        "withdraw_fee": "text"
      }
    ],
    "symbol": "text"
  }
}

Last updated