# Get usage trends Analyze usage trends over multiple months with forecasting and pattern detection. #### Path Parameters **`org_id`** string required The organization ID. #### Query Parameters **`months`** integer Number of months to analyze. Default: `6`. Range: 1-24. **`metric`** string optional Metric type to analyze: `neurons`, `synapses`, or omit for combined metrics. Default: combined (null). #### Returns Returns trend analysis with growth rates and forecasts. ```bash curl "https://api.aitronos.com/v1/analytics/usage/trends/org_abc123?months=6" \ -H "X-API-Key: $FREDDY_API_KEY" ``` ```python import os import requests api_key = os.environ["FREDDY_API_KEY"] response = requests.get( f"https://api.aitronos.com/v1/analytics/usage/trends/org_abc123", params={"months": 6}, headers={"X-API-Key": api_key} ) ``` ```javascript const response = await fetch( "https://api.aitronos.com/v1/analytics/usage/trends/org_abc123?months=6", { headers: { "X-API-Key": process.env.FREDDY_API_KEY } } ); ```