Get statistics about rule distribution across categories within an organization. ## Path parameters **`org_id`** string required The organization ID ## Returns Returns category statistics with rule counts per category. Request ```bash curl https://api.aitronos.com/v1/organizations/org_123abc/rules/statistics/categories \ -H "X-API-Key: $FREDDY_API_KEY" ``` Response ```json { "success": true, "data": { "total_rules": 47, "categories": { "safety": 12, "professional": 18, "creative": 8, "technical": 6, "custom": 3 } } } ```