Docs Home Beam MCP APIs

Unibox API

Lead email conversations and reply sending for connected tools

Lead Conversation Threads

The Unibox API exposes canonical lead email conversations so connected tools can review chronological messages, understand current answer status, filter by reply classification, and send validated plaintext replies from mailbox identities in your workspace.

Find the right conversations

Filter by answer status, campaign, mailbox, conversation classification, reply primary category, and detailed reply subcategory.

Use Unibox semantics

Answer status mirrors the current Unibox behavior so API clients and the web inbox stay aligned.

Send safely

Replies require a current latest-message check, idempotency key, workspace sender validation, and plaintext content validation before sending.

Base URL and Authentication

All requests use your Organization API Key with the standard bearer token header.

https://beam.lightmeter.io Authorization: Bearer your_api_key_here

Example Request

GET
/api/v1/unibox/threads?filter[answer_status]=unanswered&filter[classification]=positive
curl -X GET "https://beam.lightmeter.io/api/v1/unibox/threads?filter[answer_status]=unanswered&filter[classification]=positive" \ -H "Authorization: Bearer your_api_key_here" \ -H "Content-Type: application/json"

Sending Replies

Rate-Limit Feedback

Reply sends return clear HTTP 429 details when limited. Current limits are 10 replies per API key per minute, 30 replies per workspace per minute, 10 replies per sender mailbox per minute, and 1 reply per thread per 30 seconds.