API Reference

Build on Bliizo

A REST API for every resource, a JavaScript SDK for the widget, and webhooks for everything in between. Versioned and documented, because you deserve better than guesswork.

Quick example

Send your first message in 30 seconds

Grab an API key from your dashboard, then curl the send endpoint. That's it.

  • REST over HTTPS
  • Bearer token authentication
  • Predictable JSON responses
  • 1,000 requests / minute default rate limit
terminal — zsh
# Send a message
curl https://api.bliizo.com/v1/messages \
  -H "Authorization: Bearer $BLIIZO_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "conversation_id": "conv_abc123",
    "body": "Thanks for reaching out!",
    "sender": "agent"
  }'