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

# Track Game

> Add a game to your tracked games list

<ParamField path="universe_id" type="integer" required>
  The Roblox Universe ID of the game to track
</ParamField>

Requires authentication. The number of games you can track depends on your plan (Explorer: 3, Builder: 15, Studio: 50).

<RequestExample>
  ```bash theme={null}
  curl -X POST https://rolearn.dev/api/track/2753915549 \
    -H "Authorization: Bearer YOUR_TOKEN"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "status": "tracked",
    "universe_id": 2753915549,
    "tracked_count": 4,
    "limit": 15
  }
  ```
</ResponseExample>
