Playbooks
End-to-end flows, shown both ways: as a prompt you hand your agent, and as the API sequence underneath. Each one is proven against the live API.
50 execs → drafted campaign
The canonical loop — this exact flow is our automated acceptance test. Cost: roughly 16 credits at 3 enrichments.
Find me 50 healthcare executives in the US (CEOs at hospitals and
health care companies). Enrich the three most promising into verified
work emails, verify the first one's deliverability, check the top
company for hiring signals, then draft a two-step outbound campaign
using {{first_name}} personalization. Do not launch anything.What fires underneath: find_leads → enrich ×3 → verify_email → find_intent → create_campaign. The draft sits in your workspace until a launch is explicitly approved.
Verify a list before you send
Run every address through verify_email (1 cr each) and gate on status: send to valid and catch_all_valid; drop invalid; treat catch_all_unknown and risky as your bounce-budget call. Idempotency keys make re-runs free — verify the same address twice under one key and the second call replays.
Here is a list of 40 emails. Verify each one, then give me three groups: safe to send, do not send, and judgment calls — with the status that put each address in its group.
Stand up sending capacity
Quote first — it's free and binds a token: setup_sending {"emails_per_week": 1000, "brand_hint": "acme"} returns the sizing (8 mailboxes / 2 domains at that volume), the one-time setup credits, and the monthly upkeep. Approve in the console, re-call with the token, then poll the operation until mailboxes activate. Warmed capacity is launch-ready the moment assets go active.
Get me a quote for sending 1,000 cold emails a week under the brand "acme". Show me the setup and monthly costs, and wait for my approval before purchasing anything.
Work the replies
Poll get_replies with since set to your last read. Repliers are auto-suppressed from all future sends, so your agent's job is triage: route interested to a human immediately, park out_of_office for a follow-up date, and let unsubscribe/bounce handle themselves — suppression already did.
Check my campaign replies from the last 24 hours. Summarize each, flag anyone interested with a suggested next step, and tell me who was auto-suppressed and why.