SabNode Products

    Back to Home
    v2.0.0

    Filters

    Categories

    Endpoints

    Conversations APIAutomation EngineCRM RecordsCampaigns BuilderCommerce APIAnalytics API

    Conversations API

    Unified messaging layer connecting multiple channels (SMS, WhatsApp, Email) into a single threaded interface.

    Category: API

    HTTP Request

    GET
    https://api.sabnode.com/v1/conversations
    Interactive Demo
    Hi, I need support.
    Sure, what seems to be the issue?
    My order has not arrived yet.

    Example Response

    {
      "data": {
        "id": "conv_123",
        "channel": "whatsapp",
        "status": "active",
        "messages": [
          {
            "id": "msg_001",
            "direction": "inbound",
            "text": "Hello, I need help."
          }
        ]
      }
    }

    Automation Engine

    Create visual workflows and execute complex business logic triggered by events across the platform.

    Category: Tools

    HTTP Request

    POST
    https://api.sabnode.com/v1/workflows/trigger
    Interactive Demo
    Trigger
    Action
    End

    Example Response

    {
      "execution_id": "exec_abc890",
      "status": "running",
      "started_at": "2026-05-23T00:00:00Z",
      "steps_total": 5,
      "steps_completed": 1
    }

    CRM Records

    Maintain stateful profiles of contacts, tracking lifecycle stages, attributes, and interaction history.

    Category: Data

    HTTP Request

    GET
    https://api.sabnode.com/v1/contacts/{id}
    Interactive Demo
    JD
    Jane Doe
    jane@example.com
    LifecycleLead
    TagsEnterprise

    Example Response

    {
      "contact": {
        "id": "cnt_888",
        "name": "Jane Doe",
        "email": "jane@example.com",
        "lifecycle": "lead",
        "tags": ["enterprise", "active"]
      }
    }

    Campaigns Builder

    Segment audiences and dispatch high-volume, personalized outbound messages across channels.

    Category: Tools

    HTTP Request

    POST
    https://api.sabnode.com/v1/campaigns/dispatch
    Interactive Demo
    Black Friday PromoSending
    12,450 / 15,000 sent83%

    Example Response

    {
      "batch_id": "batch_999",
      "audience_size": 15000,
      "status": "queued",
      "estimated_completion": "5m"
    }

    Commerce API

    Process transactions, manage catalogs, and handle subscriptions seamlessly over chat interfaces.

    Category: API

    HTTP Request

    POST
    https://api.sabnode.com/v1/orders
    Interactive Demo
    Receipt
    SAB-PRO (x1)$99.00
    API-Overage$10.00
    Total Paid$109.00
    PAID

    Example Response

    {
      "order_id": "ord_555",
      "amount": 9900,
      "currency": "USD",
      "status": "paid",
      "items": [
        {
          "sku": "SAB-PRO",
          "quantity": 1
        }
      ]
    }

    Analytics API

    Extract raw event streams and aggregated metrics for visualization and BI tool ingestion.

    Category: Data

    HTTP Request

    GET
    https://api.sabnode.com/v1/metrics
    Interactive Demo

    Example Response

    {
      "period": "24h",
      "metrics": {
        "messages_sent": 125000,
        "delivery_rate": 0.998,
        "active_workflows": 45
      }
    }