> ## Documentation Index
> Fetch the complete documentation index at: https://docs.flowsbuilt.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ShareKit — Coming Soon

> Shareable link and guest access SDK. Currently in development.

<Warning>
  ShareKit is not yet available. This page is a preview of what's coming.
</Warning>

## What is ShareKit?

ShareKit adds Google Docs-style shareable links to any app — password protection, expiry, view tracking, and analytics in 10 minutes.

**No JWT edge cases. No S3 pre-signed URL hacks. Just `npm install sharekit`.**

## Preview

```typescript theme={null}
const share = new ShareKit({ apiKey: 'sk_live_...' })

const link = await share.create('report_4821', { type: 'view', expiresIn: '30d' })
// { shareId: 'sh_abc123', url: 'https://yourapp.com/s/abc123' }

const access = await share.verify(shareId)
// { valid: true, type: 'view', resourceId: 'report_4821' }
```

## Pricing

| Plan    | Price    | Limits                                            |
| ------- | -------- | ------------------------------------------------- |
| Free    | \$0      | 10 active links, 100 views/month                  |
| Starter | \$49/mo  | 100 links, 10k views/month                        |
| Pro     | \$99/mo  | Unlimited links/views, viewer identity, webhooks  |
| Scale   | \$249/mo | White-label URLs, custom domains, SSO viewer auth |

<Card title="Start with ChurnKit today" icon="chart-line-down" href="/churnkit/overview">
  ChurnKit is live now. Predict churn, score risk, and set webhook alerts in 30 minutes.
</Card>
