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

# Public share links (v2)

> Generate shareable URLs for agent sessions using the v2 API.

Generate a public URL that anyone can open to watch the entire agent session — no API key needed. Useful for sharing with teammates, stakeholders, or embedding in dashboards.

<CodeGroup>
  ```python Python theme={null}
  share = await client.sessions.create_share(session.id)
  print(share.share_url)
  ```

  ```typescript TypeScript theme={null}
  const share = await client.sessions.createShare(session.id);
  console.log(share.shareUrl);
  ```
</CodeGroup>
