GET
/
api
/
v1
/
marketdata
/
active_markets
curl --request GET \
  --url https://apiserver.beratrade.io/api/v1/marketdata/active_markets \
  --header 'Bliq-Key: <bliq-key>' \
  --header 'Bliq-Secret: <bliq-secret>'
[
  {
    "id": 123,
    "symbol": "<string>",
    "type": "SPOT",
    "maxAmountx18": "<string>",
    "minAmountx18": "<string>",
    "baseAssetId": 123,
    "quoteAssetId": 123,
    "makerFeeFractionx18": "<string>",
    "takerFeeFractionx18": "<string>"
  }
]

Headers

Bliq-Key
string
required

bliq_key obtained during authentication

Bliq-Secret
string
required

bliq_secret obtained during authentication

Response

200 - application/json
List of active markets
id
integer
symbol
string
type
enum<string>
Available options:
SPOT
maxAmountx18
string
minAmountx18
string
baseAssetId
integer
quoteAssetId
integer
makerFeeFractionx18
string
takerFeeFractionx18
string