Skip to main content
GET
/
api
/
v1
/
points
/
amps
Get amps breakdown for an owner
curl --request GET \
  --url https://api.mainnet.aptoslabs.com/decibel/api/v1/points/amps \
  --header 'Authorization: Bearer <token>'
{
  "bonus_amps": 123,
  "owner": "<string>",
  "realized_pnl": 123,
  "referral_amps": 123,
  "streak_amps": 123,
  "total_amps": 123,
  "trading_amps": 123,
  "vault_amps": 123,
  "rank": 1
}

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

Response

Owner amps breakdown

Per-user amps breakdown response DTO All values are sourced from the points_leaderboard_stats MV, guaranteeing consistency with the leaderboard.

bonus_amps
number<double>
required

Bonus amps earned (guild wars, campaigns, etc.)

owner
string
required

Owner address

realized_pnl
number<double>
required

Realized PnL across all subaccounts

referral_amps
number<double>
required

Referral amps earned

streak_amps
number<double>
required

Streak amps earned

total_amps
number<double>
required

Total amps (trading + streak + bonus + referral + vault)

trading_amps
number<double>
required

Trading amps earned

vault_amps
number<double>
required

Vault amps earned

rank
integer<int32> | null

Rank on the points leaderboard (null if not on leaderboard)

Required range: x >= 0