Skip to main content
GET
https://api.app.shinzo.ai
/
spotlight
/
analytics
/
sessions
/
shared
/
{shareToken}
View Shared Session
curl --request GET \
  --url https://api.app.shinzo.ai/spotlight/analytics/sessions/shared/{shareToken} \
  --header 'Authorization: Bearer <token>'

Authentication

None required.

Path Parameters

shareToken
string
required
The share token from the share URL

Example Request

curl -X GET https://api.app.shinzo.ai/spotlight/analytics/sessions/shared/shr_xyz789abc123

Response

{
  "session": {
    "session_id": "my-app-session-123",
    "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": [
    {
      "timestamp": "2025-01-15T10:00:00Z",
      "model": "claude-sonnet-4-20250514",
      "input_tokens": 120,
      "output_tokens": 85
    }
  ]
}

Status Codes

CodeDescription
200Success
404Share token not found or expired