Skip to main content
Every new account is auto-seeded with two ready-to-use scenarios — Plus One and Requirement Gathering. So you can launch a live AI meeting in two calls: list your scenarios, then create a meeting from one.

Prerequisites

An API key — get one at waterr.ai/settings?tab=api-keys. Send it on every request:
Your workspace is inferred from the key — you never need to pass membership_id or org_id.

Step 1: Pick a starter scenario

GET /scenarios returns every scenario in your workspace, including the two that were auto-created for you.
In the response, look for the default_kind field — it identifies the auto-seeded ones: Grab the id of whichever you want to try — say, the Plus One scenario.

Step 2: Create a meeting

Pass the scenario_id from step 1 and a participant name. That’s it.
You get back a daily_meeting_url your participant can join right away:
Open meeting_url in a browser — or embed the room with the Daily.co SDK.

Complete example (JavaScript)

After the meeting ends

Hit a single endpoint — GET /meetings/{id} — and you get summary, transcript, goal scores, strengths, and growth areas. See Post-Meeting Data.

Build your own scenario

When you’re ready to go past the starters, you have two options.

Option A: Generate one with AI

Describe what you want in plain language. The AI generates a persona, prompt, and goals for you.
The response gives you a scenario_id you can drop straight into Step 2. You can also attach a file (resume, JD, etc.) via -F '[email protected]'.

Option B: Build it by hand

Create a persona, then a scenario that references it. This is the full-control path.
See Personas and Scenarios for full field references.

Next steps

Post-Meeting Data

Fetch summary, transcript, and goal scores in one call.

Session Lifecycle

What happens between create and ended.

Prompting Guide

Write prompts that produce natural conversations.

Webhooks

Get notified when sessions complete.