Live — Requests proxy through api.laskad.app

Laskad Partner API

REST API for the Laskad WhatsApp bot integration — contribution groups, CBrilliance investments, member data, and webhook events.

🔑

Static API Key Auth

Send X-Partner-Api-Key in every request. Keys are provisioned by Laskad and scoped to CBrilliance only.

🛡️

Opt-in Privacy

Only groups that explicitly initiated an investment are accessible. Unenrolled group data is never exposed.

🪝

Webhooks

CBrilliance pushes signed events to Laskad for withdrawal completions. HMAC-SHA256 verified on every request.

GETQuick Start

curl
curl https://api.laskad.app/api/v1/partner/groups \
  -H "X-Partner-Api-Key: your-key-here"

# Response
{
  "success": true,
  "count": 2,
  "data": [
    {
      "id": "...",
      "jid": "120363238495038290@g.us",
      "name": "Savings Circle 2025",
      "cbrillianceGroupId": "cbr_abc123",
      "currentPotBalance": "450000.00",
      "memberCount": 12,
      "activeInvestment": {
        "amount": "100000.00",
        "status": "ACTIVE",
        "investedAt": "2025-06-01T09:00:00Z"
      }
    }
  ]
}

Endpoints

Base URL: https://api.laskad.app/api/v1