> ## 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.

# Get Share Status

> Check if a session is shared and get the share token.

## Authentication

Requires JWT token authentication.

## Path Parameters

<ParamField path="sessionUuid" type="string" required>The session UUID to check sharing status for</ParamField>

## Example Request

```bash theme={null}
curl -X GET https://api.app.shinzo.ai/spotlight/analytics/sessions/sess_abc123/share \
  -H "Authorization: Bearer <jwt_token>"
```

## Response (Shared)

```json theme={null}
{
  "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)

```json theme={null}
{
  "is_shared": false
}
```

## Status Codes

| Code  | Description                                 |
| ----- | ------------------------------------------- |
| `200` | Success                                     |
| `401` | Unauthorized - invalid or missing JWT token |
| `404` | Session not found                           |
