Skip to main content
POST
/
v1
/
convai
/
agents
/
{agentId}
/
conversations
Start a preview conversation against an agent
curl --request POST \
  --url https://api.zeptar.com/v1/convai/agents/{agentId}/conversations \
  --header 'Content-Type: application/json' \
  --cookie better-auth.session_token= \
  --data '
{
  "overrides": {
    "system_prompt": "You are a helpful onboarding assistant."
  }
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.zeptar.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

better-auth.session_token
string
cookie
required

Session cookie set by auth.api.signInEmail (or the OAuth flow). Forwarded automatically by the browser; copy via document.cookie for server-to-server calls during development.

Path Parameters

agentId
string
required

Body

application/json
overrides
object

Per-conversation overrides for the agent configuration. Useful for previewing unsaved draft changes without persisting them.

Response

201 - undefined