> ## 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.

# Game Forecast

> Get CCU forecast for a specific game

Returns ML-powered CCU predictions for a tracked game.

<ParamField path="place_id" type="integer" required>
  The Roblox Place ID of the game
</ParamField>

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

<ResponseExample>
  ```json theme={null}
  {
    "place_id": 2753915549,
    "forecast": [
      {
        "date": "2026-03-14",
        "predicted_ccu": 490000,
        "lower_bound": 460000,
        "upper_bound": 520000
      }
    ],
    "model_version": "v2",
    "generated_at": "2026-03-13T08:00:00Z"
  }
  ```
</ResponseExample>
