Order books
Market depths and prices
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
400
Cannot request both symbol and symbols
application/json
404
One or more symbols are invalid
application/json
get
/api/v1/ticker/priceGET /api/v1/ticker/price HTTP/1.1
Host: aincent.com
Accept: */*
{
"symbol": "PLEX-USDC",
"price": "1.01"
}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
symbolstringRequiredExample:
Trading pair symbol (e.g. PLEX-HBAR).
PLEX-HBARlimitinteger · min: 1 · max: 5000OptionalDefault:
Number of price levels to return. Default: 100; Max: 5000. If limit > 5000, only 5000 entries are returned.
100Example: 100Responses
200
Order book snapshot
application/json
400
Invalid symbol or limit
application/json
404
Symbol not found
application/json
429
Too many requests / rate limited
application/json
500
Internal server error
application/json
get
/api/v1/depthGET /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