Send information requests, collect responses from multiple sources, and compile research summaries — all through email.
Your AI agent handles the tedious parts of research — sending requests, collecting data, and organizing findings.
Your research agent emails sources, contacts, and organizations to gather data — just like a human analyst would.
Replies arrive via webhook. Your agent parses them, extracts key data, and adds it to its research corpus.
Manage parallel email threads with multiple sources. Each conversation stays organized with automatic threading.
After gathering intel from multiple threads, your agent compiles findings and emails a summary to stakeholders.
A complete research workflow in a few API calls.
// Send an information request
POST /api/v1/inboxes/{inbox_id}/messages/send
{
"to": ["analyst@research-firm.com"],
"subject": "Q4 market data request",
"text": "Hi, could you share the latest Q4 figures for the APAC region?"
}
// Webhook: response received
{
"event": "message.received",
"data": {
"from": "analyst@research-firm.com",
"subject": "Re: Q4 market data request",
"text": "Here are the Q4 numbers...",
"attachments": [{ "filename": "q4_apac_data.xlsx" }]
}
}
// Send compiled summary to stakeholders
POST /api/v1/inboxes/{inbox_id}/messages/send
{
"to": ["team@yourcompany.com"],
"subject": "Research Summary: APAC Q4 Market Analysis",
"text": "Based on data from 5 sources, here are the key findings..."
}Give your research agent an email address and let it handle correspondence, data collection, and reporting.