Skip to main content
GET
/
api
/
v1
/
points
/
trading
/
account
Get aggregated trading points for an owner across all their active subaccounts Returns total points and per-subaccount breakdown
curl --request GET \
  --url https://api.mainnet.aptoslabs.com/decibel/api/v1/points/trading/account \
  --header 'Authorization: Bearer <token>'
{
  "owner": "<string>",
  "total_points": 123,
  "breakdown": [
    {
      "account": "<string>",
      "points": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.decibel.trade/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer token from Geomi. See Authentication for setup instructions.

Query Parameters

owner
string
required

Owner wallet address. Used to look up all subaccounts owned by this address and aggregate their trading points.

Response

Owner trading points with breakdown

Trading points aggregated by owner response DTO

owner
string
required

Owner address

total_points
number<double>
required

Total trading points across all active subaccounts

breakdown
object[] | null

Per-subaccount breakdown (null if owner has no subaccounts)