Partner Program
Build, integrate & grow together
Join the bizSupply partner ecosystem. Whether you build plugins, resell our platform, or refer businesses — there's a path for you to create value and earn revenue.
Choose your partner path
Four ways to partner with bizSupply, each with dedicated support and clear benefits.
Technology Partner
Build plugins and integrations on the bizSupply platform. Access our SDK, sandbox environment, and developer resources.
- Full API & SDK access
- Sandbox environment
- Plugin marketplace listing
- Co-marketing opportunities
Reseller Partner
Resell bizSupply to your existing customer base. Competitive margins with dedicated support and training.
- Competitive revenue share
- Sales enablement resources
- Deal registration protection
- Dedicated partner manager
Consulting Partner
Help businesses implement and optimize bizSupply. Join our certified partner network for procurement consulting.
- Certified partner badge
- Implementation playbooks
- Client referral program
- Training & certification
Referral Partner
Earn commissions by referring businesses to bizSupply. Simple tracking, transparent payouts, no minimum commitments.
- Up to 20% recurring commission
- Affiliate dashboard & tracking
- Marketing materials provided
- No minimum requirements
How it works
From application to revenue in four simple steps.
Apply
Submit your partner application with details about your company and goals.
Onboard
Get access to the partner portal, sandbox environment, and enablement resources.
Build
Develop plugins, integrations, or go-to-market strategies with our support.
Launch
Publish on the marketplace and start generating revenue together.
For Technology Partners
Build plugins with the bizSupply SDK
Create custom document processing plugins using Python. The bizSupply SDK provides base classes, CLI scaffolding, validation tools, and LLM integration out of the box.
# Install the SDK
pip install bizsupply-sdk
# Scaffold a new plugin
bizsupply init classification --name contract_sorter
# Validate before registering
bizsupply validate contract_sorter.pyfrom bizsupply_sdk import ClassificationPlugin
class ContractSorter(ClassificationPlugin):
"""Classify contracts by vendor category."""
async def classify(
self, document, file_data,
mime_type, available_labels,
current_path, configs,
):
result = await self.prompt_llm(
prompt=f"Classify: {available_labels}",
file_data=file_data,
mime_type=mime_type,
)
return result.get("category")Full API access for partners
RESTful endpoints for plugins, pipelines, ontologies, documents, and more.
Key Partner Endpoints
| Method | Endpoint |
|---|---|
| GET | /api/v1/plugins |
| POST | /api/v1/register_plugin |
| GET | /api/v1/plugins/{id} |
| PATCH | /api/v1/plugins/{id} |
| DELETE | /api/v1/plugins/{id} |
| POST | /api/v1/auth/refresh |
Register a Plugin
curl -X POST https://api.bizsupply.ai/api/v1/register_plugin \
-H "Authorization: Bearer YOUR_TOKEN" \
-F "name=Contract Sorter" \
-F "description=Classify contracts by vendor" \
-F "code_file=@contract_sorter.py"{
"id": "plg_a3x9k2",
"name": "Contract Sorter",
"type": "classification",
"status": "active",
"created_at": "2026-04-01T10:30:00Z",
"marketplace_url": "/plugins/contract-sorter"
}Partner documentation & resources
Everything you need to build, integrate, and succeed as a bizSupply partner.
API Reference
Full REST API documentation with endpoints for plugins, pipelines, ontologies, and documents.
View docsPlugin Development Guide
Step-by-step guides for building classification, extraction, source, and benchmark plugins.
View docsSDK Documentation
Install the Python SDK and use the CLI to scaffold, validate, and register plugins.
View docsOntology & Pipelines
Define extraction schemas and orchestrate document processing workflows.
View docsMCP Server Integration
Connect bizSupply to Claude Desktop, Cursor, or Claude Code via the Model Context Protocol.
View docsWebhooks & Events
Set up real-time notifications for document processing events and contract changes.
View docsWhy partner with bizSupply?
The SMB contract intelligence market is massive and underserved. bizSupply's plugin architecture and API-first design make it the ideal platform to build on and sell into.
4
Plugin types
REST
API-first
OAuth 2
Secure auth
Apply to become a partner
Tell us about your company and how you'd like to collaborate.
Ready to build on bizSupply?
Install the SDK, scaffold your first plugin, and start building today.
pip install bizsupply-sdk