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

# Genre Timing

> Get launch timing recommendations per genre/theme

Returns optimal launch windows for each game theme, based on seasonal events and historical CCU patterns.

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

<ResponseExample>
  ```json theme={null}
  {
    "recommendations": [
      {
        "theme": "Horror",
        "best_windows": [
          {
            "period": "Oct 1 - Oct 31",
            "event": "Halloween",
            "score": 0.95,
            "reason": "Horror CCU peaks 200-300% during Halloween season"
          }
        ],
        "avoid": ["Dec 20 - Jan 5"]
      }
    ]
  }
  ```
</ResponseExample>
