Skip to main content
GET
/
api
/
v1
/
account
Get account
curl --request GET \
  --url https://staging.zerolatencylabs.com/api/v1/account \
  --header 'X-API-KEY: <api-key>'
{
  "fee_tier": 0,
  "id": 1,
  "maker_rate": "0.00020",
  "subaccount_count": 0,
  "taker_rate": "0.00045",
  "volume_14d": "125000.00",
  "label": "Main"
}

Authorizations

X-API-KEY
string
header
required

Base64-encoded API key issued by POST /api/v1/api-keys.

Response

The authenticated account

Response for an account query.

fee_tier
integer<int32>
required

Fee tier index (0–5)

Example:

0

id
integer<int64>
required

The unique identifier of the account

Required range: x >= 0
maker_rate
string
required

Maker fee rate as a decimal fraction (e.g. 0.00020 for 2.0 bps)

Example:

"0.00020"

status
enum<string>
required

The current status of the account (Active, Suspended, etc.)

Available options:
ACTIVE,
CLOSED
subaccount_count
integer<int32>
required

Number of subaccounts on this account. Indices are dense, so clients can enumerate them as 0..subaccount_count.

Required range: x >= 0
Example:

0

taker_rate
string
required

Taker fee rate as a decimal fraction (e.g. 0.00045 for 4.5 bps)

Example:

"0.00045"

volume_14d
string
required

14-day trailing trading volume in USDC

Example:

"125000.00"

label
string | null

An optional user-defined label for the account

Example:

"Main"