Bullionsx - Rest API

Bullionsx provides API solutions for automated trading based on needs of individuals and institutions.

Read all available assets from Bullionsx exchange

--request GET \  https://bullionsx.com/api/v1/assets

Sample response :

   {
    "code":"200",
    "msg":"success",
    "data":{
    "BTC":{
    "name":"bitcoin",
    "unified_cryptoasset_id":"1",
    "can_withdraw":"true",
    "can_deposit":"true",
    "min_withdraw":"0.1",
    "max_withdraw":"1",
    "maker_fee":"0.15",
    "taker_fee":"0.15"
  }
}
}
							

Bullionsx - Rest API

Bullionsx provides API solutions for automated trading based on needs of individuals and institutions.

Lists orders for provided pair

--request GET \  https://bullionsx.com/api/v1/orderbook/BTC_USDT

Sample response :

   {
  "code": "200",
  "msg": "success",
  "data": {
    "bids": [
      [
        "52283.91",
        "0.184698"
      ],
      [
        "52283.17",
        "0.258579"
      ],
      [
        "52280.83",
        "0.018643"
      ],
      [
        "52280.28",
        "0.034072"
      ],
      [
        "52280",
        "0.120592"
      ]
    ],
    "timestamp": 1616647375
  }
}

							

Bullionsx - Rest API

Bullionsx provides API solutions for automated trading based on needs of individuals and institutions.

The ticker api is to provide a 24-hour pricing and volume summary for each market pair available on the exchange.

--request GET \  https://bullionsx.com/api/v1/ticker

Sample response :

   {
  "code": "200",
  "msg": "success",
  "data": {
    "BTC_USDT": {
      "base_id": "1",
      "quote_id": "3",
      "last_price": "52424.61",
      "base_volume": "90763.824532",
      "quote_volume": 4758258103.198532,
      "isFrozen": 0
    },
    "TRX_BTC": {
      "base_id": "4",
      "quote_id": "1",
      "last_price": "0.00000105",
      "base_volume": "455723147",
      "quote_volume": 478.50930435,
      "isFrozen": 0
    },
    "TRX_USDT": {
      "base_id": "4",
      "quote_id": "3",
      "last_price": "0.05461",
      "base_volume": "2218210353.4",
      "quote_volume": 121136467.399174,
      "isFrozen": 0
    }
  }
}
							

The ticker api is to provide a 24-hour pricing and volume summary for single pair available on the exchange.

--request GET \  https://bullionsx.com/api/v1/ticker

Sample response :

   {
  "code": "200",
  "msg": "success",
  "data": {
    "symbol": "BTC_USDT",
    "last": "52298.10000000",
    "high": "57200.00000000",
    "low": "51500.00000000",
    "volume": "90789.69631400",
    "volume_usd": 4746769495.0453825,
    "bidPrice": "34637.00000000",
    "askPrice": "34639.00000000",
    "price_change": "-1.00000000",
    "price_change_percent": "-3.67000000"
  }
}
							

Bullionsx - Rest API

Bullionsx provides API solutions for automated trading based on needs of individuals and institutions.

Lists orders for provided pair.

--request GET \  https://bullionsx.com/api/v1/trades/ticker

Sample response :

    {
  "code": "200",
  "msg": "success",
  "data": [
    {
      "trade_id": "340",
      "price": "52051.86636",
      "base_volume": "0.02",
      "quote_volume": "1041.0373272",
      "timestamp": 1616639782,
      "type": "buy"
    }
  ]
}
							

Bullionsx - Rest API

Bullionsx provides API solutions for automated trading based on needs of individuals and institutions.

Read all available trade pairs from Bullionsx exchange

--request GET \  https://bullionsx.com/api/v1/trade_pairs

Sample response :

   {
  "code": "200",
  "msg": "success",
  "data": [
    {
      "trading_pairs": "BTC_USDT",
      "last_price": "52279.19",
      "lowest_ask": "34639",
      "highest_bid": "34637",
      "base_volume": "90783.047249",
      "quote_volume": 4746064175.909449,
      "price_change_percent_24h": "-3.38",
      "highest_price_24h": "57200",
      "lowest_price_24h": "51500"
    },
    {
      "trading_pairs": "TRX_BTC",
      "last_price": "0.00000105",
      "lowest_ask": "0.001",
      "highest_bid": "0.001",
      "base_volume": "456616984",
      "quote_volume": 479.44783319999993,
      "price_change_percent_24h": "-4.55",
      "highest_price_24h": "0.0000011",
      "lowest_price_24h": "0.00000102"
    }
  ]
}