> ## Documentation Index
> Fetch the complete documentation index at: https://docs.borntocraftstudio.net/llms.txt
> Use this file to discover all available pages before exploring further.

# Reward Claimed Event

> Triggered on claim.

The **Reward Claimed Event** fires immediately after a player successfully claims a reward from the menu.

## Context Keys

| Key                  | Description                                           |
| :------------------- | :---------------------------------------------------- |
| `REWARD_ID`          | ID of the reward claimed.                             |
| `REWARD_CUSTOM_DATA` | JSON String attached to the specific reward instance. |
| `TOTAL_CLAIMED`      | Lifetime total claims count.                          |
| `PENDING_COUNT`      | Remaining rewards in queue.                           |

<CodeGroup>
  ```yaml Example theme={null}
  event:
    type: btc_reward_claimed_event
    trigger:
      - action: send_message
        message: "You claimed reward: %context_REWARD_ID%"
  ```
</CodeGroup>
