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

inbox = await client.get_inbox()
for msg in inbox["messages"]:
    print(f"{msg['from']}: {msg['subject']}")

Send email

await client.send_email(
    to="user@example.com",
    subject="Task Complete",
    text="Here are your results...",
)

Read email

email = await client.read_email("msg_abc123")