Build on the BizConnect API
REST endpoints, webhooks, and SDKs to plug verified suppliers, catalogs, quotes, and orders into your workflows.
Quickstart
Make your first authenticated call in under 2 minutes.
curl https://api.bizconnect.com/v1/suppliers \
-H "Authorization: Bearer $BIZCONNECT_API_KEY" \
-H "Accept: application/json"
Authentication
All requests require a bearer token. Generate keys in your dashboard.
Authorization: Bearer sk_live_a1b2c3...
API Reference
Suppliers
GET
/v1/suppliersList suppliers
GET
/v1/suppliers/{id}Retrieve
supplierProducts
GET
/v1/productsSearch catalog
POST
/v1/productsCreate product
Quotes
POST
/v1/quotesRequest quoteGET
/v1/quotes/{id}Retrieve quote
Orders
POST
/v1/ordersCreate orderDELETE
/v1/orders/{id}Cancel order
Webhooks
Subscribe to events like quote.accepted, order.shipped,
supplier.verified.
{
"event": "order.shipped",
"data": { "order_id": "ord_9F2A", "carrier": "DHL", "tracking": "1Z999..." }
}
Rate limits
Default: 600 requests/minute per API key. Enterprise plans unlock higher throughput.