Retrieve day-by-day usage breakdown for operational monitoring.
GEThttps://api.aitronos.com/v1/analytics/usage/daily/{org_id}
org_id string required
The organization ID.
Returns daily usage analytics with requests, costs, and metrics.
Bash
- Bash
- Python
- JavaScript
curl "https://api.aitronos.com/v1/analytics/usage/daily/org_abc123?year=2025&month=11" \
-H "X-API-Key: $FREDDY_API_KEY"Response:
{
"organization_id": "org_abc123",
"period": "daily",
"data": [
{
"date": "2025-11-01",
"day_of_week": "Friday",
"day_of_month": 1,
"total_requests": 1250,
"total_cost_chf": 312.50,
"total_synapses": 625000.0,
"total_neurons": 12500.0,
"has_data": true
},
{
"date": "2025-11-02",
"day_of_week": "Saturday",
"day_of_month": 2,
"total_requests": 850,
"total_cost_chf": 212.50,
"total_synapses": 425000.0,
"total_neurons": 8500.0,
"has_data": true
}
],
"totalRequests": 2100,
"totalCost": 525.00,
"summary": {
"month": 11,
"year": 2025,
"total_days": 30,
"average_cost_per_day": 17.50,
"peak_day": "2025-11-15",
"currency": "CHF"
}
}