SabNode/Partners
    AgencyDeveloperReferralDirectory
    Partner Login

    Overview

    • Introduction

    Programs

    • Agency Partner
    • Tech Partner
    • Referral Partner

    Resources

    • Partner Directory
    • API Reference
    • Brand Assets
    • Support

    sabnode-partner-network

    Scale your operations with SabNode.

    Join an elite network of agencies, developers, and consultants building the next generation of customer operations. Gain access to exclusive APIs, revenue sharing, and co-marketing opportunities.

    Agency Program

    For digital agencies and system integrators. Deliver superior CRM, automation, and operational solutions to your clients on top of the SabNode architecture.

    Revenue Share

    10% of a referred account's monthly revenue at Bronze, rising to 30% at Platinum.

    Solution Architect Hours

    Two hours a month of architecture support at Silver, up to 24 at Platinum.

    Directory Listing

    Active partners appear in the directory below, ordered by tier, then certified staff.

    Co-Marketing

    Featured case studies and joint webinars.

    Technology Partner

    For ISVs and developers building integrations. Publish your app in the SabNode Marketplace and access thousands of potential customers.

    • OAuth 2.0 application registration and management.
    • Access to high-volume rate limits and webhook delivery.
    • Solution-architect hours as your tier earns them — two a month at Silver, up to 24 at Platinum.
    • Revenue share for paid marketplace applications.

    Referral Partner

    For consultants, creators, and advisors. Simply refer clients to SabNode and earn a commission for every successful conversion.

    Commission Estimator

    10 accounts

    Tier is earned from certified staff, active client workspaces and referred ARR — every partner starts at Bronze.

    Monthly Earn$35
    Annual Earn$420per year

    An estimate from published monthly list prices and the tier commission rate — not an offer, and not a forecast of what any account will pay.

    Partner Directory

    Agencies, technology partners and referral specialists published in the SabNode partner directory.

    No partners are listed yet

    The directory lists partners once their application is approved and their profile is published. Nothing is published yet — so there is nothing to browse.

    partner_directory.sh
    # Public partner directory — no key, no auth
    $curl -s "https://sabnode.com/api/partners/directory?specialty=crm"
    {
      "success": true,
      "items": [],
      "total": 0,
      "page": 1,
      "limit": 20
    }
    # items[]: slug, name, description, websiteUrl, logoUrl,
    # regions[], specialties[], tier, certifiedEmployees
    GET/api/partners/directory
    // Public. Query: q, region (ISO-3166 alpha-2),
    // specialty, tier, page, limit (1-100, default 20).
    
    {
      "success": true,
      "items": [
        {
          "slug": string,
          "name": string,
          "description": string | undefined,
          "websiteUrl": string | undefined,
          "logoUrl": string | undefined,
          "regions": string[],
          "specialties": ("whatsapp" | "crm" | "seo" | "automation"
                          | "commerce" | "ai" | "integrations")[],
          "tier": "bronze" | "silver" | "gold" | "platinum",
          "certifiedEmployees": number
        }
      ],
      "total": number,
      "page": number,
      "limit": number
    }
    POST/api/partners/roadmap
    // Needs a signed-in session cookie. One vote per
    // workspace per item; weight follows the plan.
    // Request
    { "itemId": string }
    
    // Response
    {
      "success": true,
      "applied": boolean,
      "item": {
        "itemId": string,
        "title": string,
        "status": "submitted" | "planned" | "in_progress"
                  | "shipped" | "declined",
        "votes": number,
        "voterCount": number
      },
      "weight": number
    }

    Start Building

    The directory endpoint above needs no key. Everything else is keyed: API keys are issued inside your workspace, under Developer → API keys.

    Open API keys