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.

How it works

From application to revenue in four simple steps.

1

Apply

Submit your partner application with details about your company and goals.

2

Onboard

Get access to the partner portal, sandbox environment, and enablement resources.

3

Build

Develop plugins, integrations, or go-to-market strategies with our support.

4

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.

ClassificationCategorize documents with custom labels
ExtractionExtract structured data from documents
SourceIngest documents from external systems
BenchmarkScore documents and compare metrics
Read the plugin guide
terminal
# Install the SDK
pip install bizsupply-sdk

# Scaffold a new plugin
bizsupply init classification --name contract_sorter

# Validate before registering
bizsupply validate contract_sorter.py
contract_sorter.py
from 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

MethodEndpoint
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

terminal
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"
Response — 201 Created
{
  "id": "plg_a3x9k2",
  "name": "Contract Sorter",
  "type": "classification",
  "status": "active",
  "created_at": "2026-04-01T10:30:00Z",
  "marketplace_url": "/plugins/contract-sorter"
}

Why 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