Get usage statistics for a specific rule, including attachment counts by entity type. ## Path parameters **`org_id`** string required The organization ID **`rule_id`** string required The rule ID ## Returns Returns usage statistics including attachment counts by entity type. Request ```bash curl https://api.aitronos.com/v1/organizations/org_123abc/rules/rule_a1b2c3d4/statistics/usage \ -H "X-API-Key: $FREDDY_API_KEY" ``` Response ```json { "success": true, "data": { "rule_id": "rule_a1b2c3d4", "total_attachments": 15, "attachments_by_type": { "assistant": 8, "user": 4, "model": 2, "vector_store": 1, "organization": 0 }, "active_attachments": 12, "inactive_attachments": 3 } } ```