For the complete documentation index, see llms.txt. This page is also available as Markdown.

GET /admin/tiers

List tier overrides

List tier overrides.

operationId: listTiers

Not reachable through CCXT. Operator-only surface. CCXT models a trading client's view of a venue; it has no concept of an exchange's own administration, so there is no unified method to map to.

Authentication: adminAuth.

Returns all addresses with non-default tier assignments.

Responses

Status
Body
Meaning

200

(no schema declared)

The configured tier overrides.

403

(no schema declared)

Admin secret required

Example

curl -X GET 'https://exchange.nexus.xyz/api/exchange/admin/tiers' \
  -H 'Authorization: Bearer <token>'
import requests

headers = {
    "Authorization": "Bearer <token>"
}

response = requests.get("https://exchange.nexus.xyz/api/exchange/admin/tiers", headers=headers)
response.raise_for_status()
print(response.json())
const response = await fetch("https://exchange.nexus.xyz/api/exchange/admin/tiers", {
  method: "GET",
  headers: {
    "Authorization": "Bearer <token>"
  },
});
if (!response.ok) throw new Error(`${response.status} ${await response.text()}`);
console.log(await response.json());

Generated from eng/apps/exchange/api/openapi.json (spec 0.9.36). Do not edit by hand — regenerate with python3 product/docs/tools/api-reference/generate.py. Hand-authored context lives in the Guides pages.

Last updated