Accounts and access for AI agents.
Email, phone, CAPTCHA, and credentials — built for AI agents.
Early access opening soon.
Mail
Your agent needs to sign up.
It needs an email.
POST /v1/mail/inboxes
{ "name": "my-agent" }
{ "address": "my-agent@clawise.dev", "status": "active" }
A real inbox. Send, receive, and extract verification codes.
Phone
The site asks for phone verification.
POST /v1/phone/verifications
{ "country_code": "US", "target": "google" }
{ "number": "+14155551234", "status": "pending" }
The agent fills the number in. The site sends a code. Clawise catches it.
Seconds later
{
"otp_code":
"593017",
"status":
"received" }
Captcha
A CAPTCHA blocks the way.
POST /v1/captcha/solve
{ "type": "recaptcha_v2", "sitekey": "6Le..." }
{ "token": "03AGdBq24PBnL..." }
reCAPTCHA, hCaptcha, Turnstile — solved in seconds.
Vault
The agent needs to remember its credentials.
POST /v1/vault/credentials
{ "key": "google", "value": "••••••••" }
{ "stored": true }
Passwords, TOTP secrets, API keys — encrypted at rest, instant recall.