# Personal Connector Usage Object div strong 🔨 In Development — This section is still being developed and may change. Represents usage statistics and billing information for a personal connector configuration. ## Properties **`configurationId`** string The personal connector configuration ID these statistics are for. **`period`** object Time period for the usage statistics. details summary Show period properties **`startDate`** string ISO 8601 timestamp for the start of the period. **`endDate`** string ISO 8601 timestamp for the end of the period. **`totalExecutions`** integer Total number of tool executions in this period. **`successfulExecutions`** integer Number of successful tool executions. **`failedExecutions`** integer Number of failed tool executions. **`totalNeuronsCharged`** integer Total neurons charged for all tool executions in this period. **`totalCostChf`** number Total cost in Swiss Francs (CHF) for this period. **`averageExecutionTimeMs`** integer Average tool execution time in milliseconds. **`toolBreakdown`** array of objects Per-tool usage breakdown. details summary Show tool breakdown structure **`toolName`** string Name of the tool. **`executions`** integer Number of times this tool was executed. **`neuronsCharged`** integer Total neurons charged for this tool. **`averageExecutionTimeMs`** integer Average execution time for this tool. ## Example Object ```json { "configurationId": "pconf_abc123", "period": { "startDate": "2025-10-01T00:00:00Z", "endDate": "2025-10-07T23:59:59Z" }, "totalExecutions": 45, "successfulExecutions": 42, "failedExecutions": 3, "totalNeuronsCharged": 337500, "totalCostChf": 3.38, "averageExecutionTimeMs": 1250, "toolBreakdown": [ { "toolName": "clickup_create_task", "executions": 15, "neuronsCharged": 112500, "averageExecutionTimeMs": 1500 }, { "toolName": "clickup_list_tasks", "executions": 20, "neuronsCharged": 150000, "averageExecutionTimeMs": 1000 }, { "toolName": "clickup_update_task", "executions": 10, "neuronsCharged": 75000, "averageExecutionTimeMs": 1250 } ] } ```