Bridge Starter
- 1 WhatsApp line
- 1.000 messages sent/month
- 5.000 webhook events/month
- 7 log days
Try Bridge for 7 days with Stripe. It is WAzion’s API layer for developers: QR, API key, REST, MCP, and webhooks. No AI, no Chrome extension, and no Meta onboarding.
Confusion kills conversion. WAzion and Bridge share brand and infrastructure, but they do not sell the same thing.
All plans start with a 7-day trial. Stripe will ask for a card to activate the trial; you won’t be charged today and you can cancel before the 7th. Choose a fixed package if your limits fit.
For agencies, SaaS, CRMs, and automations with multiple clients. You define capacity, the system calculates the price, you pay, and you enter the same panel.
Bridge hides the internal session. Your client works with line_idAPI keys and signed events.
| Action | Endpoint |
|---|---|
| Send text | POST /v1/messages/send |
| Send media | POST /v1/messages/send-media |
| Receive messages | webhook message.received |
| Read chats | GET /v1/chats |
| MCP | POST /mcp |
curl -X POST https://www.wazion.com/api/bridge/v1/messages/send \
-H "Authorization: Bearer wzb_live_xxx" \
-H "Content-Type: application/json" \
-H "Idempotency-Key: order-1001" \
-d '{
"line_id": "line_xxx",
"to": "+34600000000",
"message": "Pedido confirmado"
}'