Monthly summary of API key usage (programmatic access only).
GEThttps://api.aitronos.com/v1/analytics/api-keys/summary/{org_id}
org_id string required
The organization ID.
year integer optional
Year (2020-2030). Defaults to current year.
month integer optional
Month (1-12). Defaults to current month.
Returns monthly API key usage summary with total requests, costs, synapses, and neurons.
Bash
- Bash
- Python
- Python
- JavaScript
curl "https://api.aitronos.com/v1/analytics/api-keys/summary/org_abc123?year=2025&month=11" \
-H "X-API-Key: $FREDDY_API_KEY"Response:
{
"organization_id": "org_abc123",
"month": 11,
"year": 2025,
"total_api_key_requests": 25000,
"total_api_key_cost": 6250.0,
"average_cost_per_request": 0.25,
"total_synapses": 12500000.0,
"total_neurons": 250000.0,
"generated_at": "2025-11-15T10:30:00Z"
}