REST API for the Laskad WhatsApp bot integration — contribution groups, CBrilliance investments, member data, and webhook events.
Send X-Partner-Api-Key in every request. Keys are provisioned by Laskad and scoped to CBrilliance only.
Only groups that explicitly initiated an investment are accessible. Unenrolled group data is never exposed.
CBrilliance pushes signed events to Laskad for withdrawal completions. HMAC-SHA256 verified on every request.
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"
}
}
]
}Base URL: https://api.laskad.app/api/v1