Order books

Market depths and prices

Latest price for a symbol or symbols

get
Query parameters
symbolstringOptional

A single symbol

symbolsstring[]Optional

Comma-separated symbols

Responses
200

Single ticker if symbol is provided; otherwise array of tickers

application/json
Responseone of
or
get
/api/v1/ticker/price
GET /api/v1/ticker/price HTTP/1.1
Host: aincent.com
Accept: */*
{
  "symbol": "PLEX-USDC",
  "price": "1.01"
}

Order book (depth)

get

Returns the current order book (bids & asks) as arrays of [PRICE, QTY] strings.

Request weight by limit:

  • 1–100 → 5

  • 101–500 → 25

  • 501–1000 → 50

  • 1001–5000 → 250

Data Source: Memory.

Query parameters
symbolstringRequired

Trading pair symbol (e.g. PLEX-HBAR).

Example: PLEX-HBAR
limitinteger · min: 1 · max: 5000Optional

Number of price levels to return. Default: 100; Max: 5000. If limit > 5000, only 5000 entries are returned.

Default: 100Example: 100
Responses
200

Order book snapshot

application/json
get
/api/v1/depth
GET /api/v1/depth?symbol=text HTTP/1.1
Host: aincent.com
Accept: */*
{
  "lastUpdateId": 1027024,
  "bids": [
    [
      "4.00000000",
      "431.00000000"
    ]
  ],
  "asks": [
    [
      "4.00000200",
      "12.00000000"
    ]
  ]
}

Last updated