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

# Create Share Link

> Create a shareable link for a session.

## Authentication

Requires JWT token authentication.

## Path Parameters

<ParamField path="sessionUuid" type="string" required>The session UUID to share</ParamField>

## Example Request

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

## Response

```json theme={null}
{
  "share_token": "shr_xyz789abc123",
  "share_url": "https://app.shinzo.ai/shared/shr_xyz789abc123",
  "created_at": "2025-01-20T14:00:00Z"
}
```

## Status Codes

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