Exchange info
Exchange status and token info
Returns the current server time in milliseconds since the Unix epoch.
Responses
200
Current server time
application/json
429
Too Many Requests
application/problem+json
500
Server error
application/problem+json
get
/api/v1/timeGET /api/v1/time HTTP/1.1
Host: aincent.com
Accept: */*
{
"serverTime": 1724952745123
}Returns exchange metadata for a single symbol or a list of symbols. Exactly one of symbol or symbols may be provided. If neither is set, all symbols are returned.
Query parameters
symbolstring · min: 3 · max: 33OptionalExample:
Single trading pair symbol (mutually exclusive with symbols)
PLEX-HBARPattern: ^[A-Z0-9_]+-[A-Z0-9_]+$symbolsstring[] · min: 1OptionalExample:
Multiple trading pair symbols (mutually exclusive with symbol).
Default style uses repeated query params, e.g. ?symbols=PLEX-HBAR,HBAR-USDC.
PLEX-HBARResponses
200
ExchangeInfo for the requested symbols
application/json
400
Bad Request — both 'symbol' and 'symbols' were provided, or input is invalid.
application/problem+json
500
Server error
application/problem+json
get
/api/v1/exchangeInfoGET /api/v1/exchangeInfo HTTP/1.1
Host: aincent.com
Accept: */*
{
"exchangeSymbols": [
{
"symbol": "PLEX-HBAR",
"baseAsset": "PLEX",
"quoteAsset": "HBAR",
"baseAssetPrecision": 8,
"quoteAssetPrecision": 8,
"filters": [
{
"filterType": "PRICE_FILTER",
"minPrice": "0.01000000",
"maxPrice": "100000.00000000",
"tickSize": "0.01000000"
},
{
"filterType": "LOT_SIZE",
"minQty": "0.00001000",
"maxQty": "9000.00000000",
"stepSize": "0.00001000"
},
{
"filterType": "MIN_NOTIONAL",
"minNotional": "10.00",
"applyToMarket": true,
"avgPriceMins": 5
}
]
}
]
}Last updated