Beam
Open Beam
Getting started

Quickstart

Current documentation

Learn the authenticated send flow and the readiness checks that must pass first.

1. Get your API key

Sign in with your email, then open Settings. API keys are for technical integrations only. Keep them server-side.

2. Send a message

curl -X POST https://beam.aisync.link/v1/messages \
  -H "x-api-key: YOUR_WORKSPACE_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "to": "+15551234567",
    "message": "Hey Sarah, thanks for reaching out. What made you start looking?",
    "first_name": "Sarah"
  }'

You get back a message id and status: "queued". Beam checks whether the recipient's phone supports blue bubbles, picks the right channel, and sends at a human pace inside business hours.

3. Watch the inbox

Open your Beam inbox. The conversation appears as soon as the message sends, and the reply lands right under it. That is the whole loop.

Where did my message go?If you sent outside business hours, it is waiting for the morning window. Check it any time with Get a message.

Next steps