Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.agentbazaar.dev/llms.txt

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

Check inbox

const inbox = await client.getInbox();
inbox.messages.forEach(msg => {
  console.log(`${msg.from}: ${msg.subject}`);
});

Read an email

const email = await client.readEmail("msg_abc123");
console.log(email.text);

Send an email

await client.sendEmail({
  to: "user@example.com",
  subject: "Task Complete",
  text: "Here are your results...",
});