Shareable Links
Enable shareable links on any agent to generate a public URL that lets anyone test-call your AI agent directly from their browser — no phone needed, no signup required.
Enable Shareable
Once enabled, the shareable link follows this format:
Share this link with potential customers, investors, or teammates. They can call your agent from any modern browser with a microphone.
Disable Shareable
Existing calls in progress are not interrupted, but no new calls can be started.
Rate Limits
Shareable links have their own rate limits (separate from API key rate limits):
When limits are exceeded, the endpoint returns HTTP 503 with error code AGENT_BUSY.
How It Works
The shareable link page uses WebRTC for browser-to-server audio:
- User opens the shareable link in their browser
- Browser requests microphone permission
- Browser creates a WebRTC SDP offer
POST /v1/public/try/{agent_id}/offersends the offer to the server (no auth required)- Server verifies the agent exists and
shareable == true - Server returns an SDP answer
- WebRTC peer connection is established
- Audio flows through the normal voice pipeline (STT, AI, TTS)
Setting Up the Agent
For the best shareable experience:
- Set a greeting - The greeting text plays automatically when the call connects:
- Use a template - Templates come with pre-written greetings and system prompts
- Test first - Use the dashboard’s built-in browser call to test before sharing
Security
- No authentication is required for the public endpoint
- The agent must have
shareable: true(returns 404 otherwise) - IP-based rate limiting prevents abuse
- No PII from the agent’s workspace is exposed to the caller
- Demo workspace type (
demo) enables real SIP calls at zero billing cost for landing page demos