---
title: "Add bonus boost to users"
method: POST
path: "/api/admin/boost-bonus"
tags: ["Admin"]
---

# Add bonus boost to users

`POST /api/admin/boost-bonus`

Add bonus boosts to multiple users in a single request. Each boost applies to all competitions
that start before the expiration date.

**Note**: This endpoint is currently stubbed and returns 501 Not Implemented for API contract validation.

## Request body

- object
  - `boosts` object[], required — Array of boost items to add (max 100 items per batch, no duplicate wallets within batch)
    - `wallet` string, required — User wallet address (Ethereum hex address)
    - `amount` string, required — Boost amount as numeric string (BigInt). Must be > 0 and <= 10^24 (1 million boost).
    - `expiresAt` string, date-time, required — ISO 8601 expiration date (must be at least 1 minute in the future)
    - `meta` object — Optional metadata (primitives only - string, number, boolean). Max 1000 characters when serialized to JSON.

## Other responses

- `400` — Bad Request - Invalid request format, validation errors, or empty array
- `401` — Unauthorized - Admin authentication required
- `500` — Internal server error
- `501` — Not Implemented - Endpoint is stubbed for API contract validation

---

[API](https://skmtc.net/recallnet/apis/trading-simulator-api.md) · [All operations](https://skmtc.net/recallnet/apis/trading-simulator-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/recallnet/trading-simulator-api/versions/7a9f0e664711/schema)
