Build on Cothery
Access APIs, SDKs, and documentation across every product in the Cothery ecosystem. From marketplace integrations to enterprise pipelines.
Cothery APIs
Unified APIs across the entire platform.
License Verification API
Verify and manage license keys programmatically. Support for activation, deactivation, and status checks.
Webhooks
Real-time event notifications for purchases, refunds, license changes, and more.
Product Catalog API
Search, filter, and retrieve product information from the marketplace catalog.
Solutions SDK
Pre-built integrations for industry-specific workflows. Manufacturing, logistics, finance, and more.
Enterprise Admin API
Manage users, roles, licenses, and deployments across your organization.
Launchpad Builder API
Programmatic access to Launchpad tools — create, deploy, and manage projects via API.
Quick Start
Get up and running in minutes. Our SDKs and documentation are designed to make integration as smooth as possible.
Get your API key
Sign up and generate API credentials from your vendor dashboard.
Install the SDK
Available for PHP, JavaScript, and Python. Install via Composer, npm, or pip.
Make your first call
Verify a license, register a webhook, or query the catalog.
$ composer require cothery/sdk
# Verify a license key
use Cothery\SDK\CotheryClient;
$client = new CotheryClient('your-api-key');
$license = $client->licenses->verify('COT-XXXX');
// { "valid": true, "tier": "extended" }