Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
@bizbionic/sdk thin A2A client.
@bizbionic/sdk
import { BizBionic } from '@bizbionic/sdk'; // Partner bootstrap (no key) const reg = await new BizBionic().partner.register({ name: 'My Platform' }); const partner = new BizBionic({ apiKey: reg.api_key as string }); await partner.partner.onboardCustomer({ externalRef: 'store_1', name: 'Store One', }); await partner.partner.send({ externalRef: 'store_1', to: '+14155550100', message: 'Order ready', idempotencyKey: 'order_99', consent_status: 'express', consent_source: 'pos', }); // Account key helpers const client = new BizBionic({ apiKey: process.env.BB_API_KEY }); await client.billing.balance(); await client.messages.send({ to: '+14155550100', message: 'Hello' });
baseUrl
https://app.bizbionic.com