Account
Caller-scoped account endpoints
Returns the status of a single order for the authenticated account.
Rules
symbolis required.Exactly one of
orderId(server-assigned UUID) ororigClientOrderId(your client ID) must be provided.Requests must be signed (global security requires XApiKey header AND Ed25519Sig query signature).
Ed25519 signature of payload
Trading pair symbol
PLEX-HBARPattern: ^[A-Z0-9_]+-[A-Z0-9_]+$Server-assigned order ID (if combined with origClientOrderId, must refer to same order).
26a911ff-f546-eaaf-4b22-e57657b57571Client-assigned order ID (optional if orderId is set).
myorder-001Pattern: ^[A-Za-z0-9._-]{1,36}$Order status
Bad Request — XOR violation, invalid UUID, or parameter error
Unauthorized — missing/invalid API key or signature
Forbidden — authenticated but not allowed to view this order
Not Found — order does not exist for this account/symbol
Too Many Requests — rate limit exceeded
Server error
GET /api/v1/order?symbol=PLEX-HBAR HTTP/1.1
Host: aincent.com
X-API-KEY: YOUR_API_KEY
Accept: */*
{
"symbol": "PLEX-HBAR",
"orderId": "26a911ff-f546-eaaf-4b22-e57657b57571",
"clientOrderId": "myorder-001",
"price": "0.01234567",
"origQty": "100.00000000",
"executedQty": "25.00000000",
"cumulativeQuoteQty": "0.30864175",
"status": "PARTIALLY_FILLED",
"timeInForce": "GTC",
"type": "LIMIT",
"side": "BUY",
"stopPrice": null,
"time": 1724952745000,
"updateTime": 1724952751000,
"isWorking": true,
"workingTime": 60000
}Returns all open orders for the authenticated account.
Rules
symbolis optional. When provided, results are filtered to that trading pair; otherwise all symbols are returned.When there are no open orders, the server returns 200 with an empty array
[].Requests must be signed (global security requires XApiKey header AND Ed25519Sig query signature).
Ed25519 signature of payload
Trading pair symbol
PLEX-HBARPattern: ^[A-Z0-9_]+-[A-Z0-9_]+$List of open orders
Bad Request — invalid parameter (e.g., malformed symbol)
Unauthorized — missing/invalid API key or signature
Forbidden — authenticated but not allowed to view these orders
Too Many Requests — rate limit exceeded
Server error
GET /api/v1/openOrders?symbol=PLEX-HBAR HTTP/1.1
Host: aincent.com
X-API-KEY: YOUR_API_KEY
Accept: */*
[
{
"symbol": "PLEX-HBAR",
"orderId": "26a911ff-f546-eaaf-4b22-e57657b57571",
"clientOrderId": "myorder-001",
"price": "0.01234567",
"origQty": "100.00000000",
"executedQty": "25.00000000",
"cumulativeQuoteQty": "0.30864175",
"status": "PARTIALLY_FILLED",
"timeInForce": "GTC",
"type": "LIMIT",
"side": "BUY",
"stopPrice": null,
"time": 1724952745000,
"updateTime": 1724952751000,
"isWorking": true,
"workingTime": 60000
},
{
"symbol": "PLEX-HBAR",
"orderId": "8d3de5fd-8b0b-4f0c-b8f4-0a9c2dbf3f60",
"clientOrderId": "myorder-002",
"price": "0.01230000",
"origQty": "50.00000000",
"executedQty": "0.00000000",
"cumulativeQuoteQty": "0.00000000",
"status": "NEW",
"timeInForce": "GTC",
"type": "LIMIT",
"side": "SELL",
"stopPrice": null,
"time": 1724952800000,
"updateTime": 1724952800000,
"isWorking": true,
"workingTime": 0
}
]Returns executed trades (fills) for the authenticated account.
Rules
symbolis required.If
fromIdis supplied, results include trades withid >= fromIdand are returned in ascendingidorder; otherwise the most recent trades are returned.limitdefaults to 500 and is clamped to a maximum of 1000.When there are no trades, the server returns 200 with an empty array
[].Time window:
startTimeandendTimetogether must not exceed 24 hours.Supported parameter combinations (with
symbolalways present):symbolsymbol+orderIdsymbol+startTimesymbol+endTimesymbol+fromIdsymbol+startTime+endTimesymbol+orderId+fromId
Requests must be signed (global security requires XApiKey header AND Ed25519Sig query signature).
Data Source: Memory ⇒ Database.
Ed25519 signature of payload
Trading pair symbol
PLEX-HBARPattern: ^[A-Z0-9_]+-[A-Z0-9_]+$Exchange-assigned order ID (UUID). May be combined with fromId.
26a911ff-f546-eaaf-4b22-e57657b57571Start of the time filter (ms since epoch). Can be used alone or with endTime (together ≤ 24h).
1724952745000End of the time filter (ms since epoch). Can be used alone or with startTime (together ≤ 24h).
1725039145000Inclusive trade id to start from (id >= fromId). May be used with symbol or with symbol + orderId.
28457Max number of trades to return. Default 500; maximum 1000. Out-of-range values are clamped.
500List of account trades
Bad Request — invalid parameter (e.g., malformed symbol, unsupported combination, or startTime..endTime > 24h)
Unauthorized — missing/invalid API key or signature
Forbidden — authenticated but not allowed to view these trades
Too Many Requests — rate limit exceeded
Server error
GET /api/v1/myTrades?symbol=PLEX-HBAR HTTP/1.1
Host: aincent.com
X-API-KEY: YOUR_API_KEY
Accept: */*
[
{
"symbol": "PLEX-HBAR",
"id": 28457,
"orderId": "26a911ff-f546-eaaf-4b22-e57657b57571",
"price": "0.01234567",
"qty": "12.00000000",
"quoteQty": "0.14814804",
"commission": "0.10000000",
"commissionAsset": "PLEX",
"time": 1724952751000,
"isBuyer": true,
"isMaker": false
},
{
"symbol": "PLEX-HBAR",
"id": 28458,
"orderId": "26a911ff-f546-eaaf-4b22-e57657b57571",
"price": "0.01230000",
"qty": "38.00000000",
"quoteQty": "0.46740000",
"commission": "0.30000000",
"commissionAsset": "HBAR",
"time": 1724952799000,
"isBuyer": true,
"isMaker": true
}
]Returns a particular symbol's maker and taker commission rates for the caller identified by the provided credentials. Authentication uses the global requirement: XApiKey (header) AND Ed25519Sig (query).
Ed25519 signature of payload
Trading pair symbol
WETH-USDCPattern: ^[A-Z0-9_]+-[A-Z0-9_]+$Commission rates for the authenticated caller
Unauthorized — missing or invalid credentials/signature
Forbidden — credentials valid but not authorized for this resource
Too Many Requests — rate limit exceeded
Server error
GET /api/v1/account/commission?symbol=text HTTP/1.1
Host: aincent.com
X-API-KEY: YOUR_API_KEY
Accept: */*
{
"maker": "0.00150000",
"taker": "0.00150000"
}Returns the commission rates and balances for the caller identified by the provided credentials. Authentication uses the global requirement: XApiKey (header) AND Ed25519Sig (query).
Ed25519 signature of payload
If true, omit any balances where both 'free' and 'locked' are zero
falseExample: trueAccount balances for the authenticated caller
Unauthorized — missing or invalid credentials/signature
Forbidden — credentials valid but not authorized for this resource
Too Many Requests — rate limit exceeded
Server error
GET /api/v1/account HTTP/1.1
Host: aincent.com
X-API-KEY: YOUR_API_KEY
Accept: */*
{
"commissionRates": {
"maker": "0.00150000",
"taker": "0.00150000"
},
"balances": [
{
"asset": "BTC",
"free": "0.25000000",
"locked": "0.00000000"
},
{
"asset": "USDT",
"free": "1500.00",
"locked": "25.00"
}
]
}Last updated