Exchange info

Exchange status and token info

Get server time

get

Returns the current server time in milliseconds since the Unix epoch.

Responses
200

Current server time

application/json
get
/api/v1/time
GET /api/v1/time HTTP/1.1
Host: aincent.com
Accept: */*
{
  "serverTime": 1724952745123
}

Gets the server's availability

get

Returns 200 OK if the server is available

Responses
200

OK

application/json
Responseobject
get
/api/v1/ping
GET /api/v1/ping HTTP/1.1
Host: aincent.com
Accept: */*
{}

Exchange metadata and symbol filters

get

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: 33Optional

Single trading pair symbol (mutually exclusive with symbols)

Example: PLEX-HBARPattern: ^[A-Z0-9_]+-[A-Z0-9_]+$
symbolsstring[] · min: 1Optional

Multiple trading pair symbols (mutually exclusive with symbol). Default style uses repeated query params, e.g. ?symbols=PLEX-HBAR,HBAR-USDC.

Example: PLEX-HBAR
Responses
200

ExchangeInfo for the requested symbols

application/json
get
/api/v1/exchangeInfo
GET /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