Skip to main content

Position ADL Quantile Estimation

Type: USER-DATA

Weight: 5

GET /fapi/v1/adlQuantile

ADL queue position for your open positions.

Request

GET /fapi/v1/adlQuantile?symbol=BTCUSDT&timestamp=<ms>&signature=<hex>

Query params

NameTypeRequiredNotes
symbolstringno

Response — 200

[
{
"symbol": "BTCUSDT",
"adlQuantile": { "LONG": 2, "SHORT": 0, "BOTH": 2 }
}
]

Simplified implementation. The quantile is not computed from the real ADL ranking: it is LONG=2 / SHORT=0 when you are long and LONG=0 / SHORT=2 when you are short, purely to satisfy the SDK shape. Do not use it for risk decisions. Real ADL rankings and events are on the native API: GET /api/v1/adl/{symbol}/rankings, /events, /config, and your own history at GET /api/v1/adl/history (JWT).

Authentication failures (INVALID_API_KEY, API_KEY_DISABLED, IP_NOT_ALLOWED, SIGNATURE_INVALID) apply to every signed endpoint and use Sparky's {"success":false,"error":{...}} envelope; see Error Codes.