Skip to main content
GET
/
api
/
v1
/
points
/
trading
/
amps
Get aggregated trading Hz for an owner across all their subaccounts
curl --request GET \
  --url https://api.mainnet.aptoslabs.com/decibel/api/v1/points/trading/amps \
  --header 'Authorization: Bearer <token>'
{
  "owner": "<string>",
  "total_amps": 123,
  "breakdown": [
    {
      "account": "<string>",
      "total_amps": 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

season
string

Optional season name to filter by (e.g. "season1"). Omit to aggregate across all seasons.

days
integer<int64>

Number of days to look back. 1 = today only, 7 = last week, etc. Omit for lifetime totals.

Required range: x >= 0

Response

Owner trading Hz with breakdown

Trading Hz aggregated by owner response DTO

owner
string
required

Owner address

total_amps
number<double>
required

Total Hz earned across all subaccounts

breakdown
object[] | null

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