Automatic device authorization
Claude Code can automatically open your browser to authenticate with TigerMail. No manual API key copying needed.
Copy our AI instructions from the homepage or this page
Paste the instructions and ask Claude to integrate TigerMail
Claude will open your browser to authenticate with TigerMail
Your integration is complete with working code
This is an example of what Claude Code will generate for you.
// Claude Code generates this for you:
const response = await fetch("https://tigermail.io/api/v1/send", {
method: "POST",
headers: {
"Authorization": `Bearer ${process.env.TIGERMAIL_API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
to: ["user@example.com"],
subject: "Welcome!",
html: "<h1>Welcome to our app!</h1>",
from: "you@yourdomain.com",
}),
});