Skip to main content
GET
/
users
/
{id}
/
points
/
{key}
/
boosts
JavaScript
import { TrophyApiClient } from '@trophyso/node';

const trophy = new TrophyApiClient({
  apiKey: 'YOUR_API_KEY'
});

const response = await trophy.users.pointsBoosts("user-id", "points-system-key");
[
  {
    "id": "0040fe51-6bce-4b44-b0ad-bddc4e123534",
    "name": "Double XP Weekend",
    "status": "active",
    "start": "2025-01-01",
    "end": "2025-01-03",
    "multiplier": 2,
    "rounding": "down"
  },
  {
    "id": "0040fe51-6bce-4b44-b0ad-bddc4e123535",
    "name": "VIP Bonus",
    "status": "active",
    "start": "2025-01-01",
    "end": null,
    "multiplier": 1.5,
    "rounding": "nearest"
  }
]
Rate Limits

Authorizations

X-API-KEY
string
header
required

Path Parameters

id
string
required

ID of the user.

key
string
required

Key of the points system.

Response

Successful operation

id
string
required

The ID of the points boost

name
string
required

The name of the points boost

status
enum<string>
required

The status of the points boost

Available options:
active,
scheduled,
finished
start
string
required

The start date of the points boost

end
string | null
required

The end date of the points boost

multiplier
number
required

The multiplier of the points boost

rounding
enum<string>
required

The rounding method of the points boost

Available options:
down,
up,
nearest