Skip to main content
GET
/
spotlight
/
analytics
/
sessions
/
{sessionUuid}
/
share
Get Share Status
curl --request GET \
  --url https://api.app.shinzo.ai/spotlight/analytics/sessions/{sessionUuid}/share \
  --header 'Authorization: Bearer <token>'

Documentation Index

Fetch the complete documentation index at: https://docs.shinzo.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authentication

Requires JWT token authentication.

Path Parameters

sessionUuid
string
required
The session UUID to check sharing status for

Example Request

curl -X GET https://api.app.shinzo.ai/spotlight/analytics/sessions/sess_abc123/share \
  -H "Authorization: Bearer <jwt_token>"

Response (Shared)

{
  "is_shared": true,
  "share_token": "shr_xyz789abc123",
  "share_url": "https://app.shinzo.ai/shared/shr_xyz789abc123",
  "shared_at": "2025-01-20T14:00:00Z"
}

Response (Not Shared)

{
  "is_shared": false
}

Status Codes

CodeDescription
200Success
401Unauthorized - invalid or missing JWT token
404Session not found