Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request GET \ --url https://api.app.shinzo.ai/spotlight/analytics/sessions/{sessionUuid} \ --header 'Authorization: Bearer <token>'
Get detailed information about a specific session including all interactions.
curl -X GET https://api.app.shinzo.ai/spotlight/analytics/sessions/sess_abc123 \ -H "Authorization: Bearer <jwt_token>"
{ "session": { "session_id": "my-app-session-123", "session_uuid": "sess_abc123", "start_time": "2025-01-15T10:00:00Z", "end_time": "2025-01-15T11:30:00Z", "total_requests": 15, "total_input_tokens": 12450, "total_output_tokens": 8320 }, "interactions": [ { "interaction_uuid": "int_xyz789", "timestamp": "2025-01-15T10:00:00Z", "model": "claude-sonnet-4-20250514", "provider": "anthropic", "input_tokens": 120, "output_tokens": 85, "latency_ms": 1250, "status": "success" } ] }
200
401
404