Developer Hub

Build on Cothery

Access APIs, SDKs, and documentation across every product in the Cothery ecosystem. From marketplace integrations to enterprise pipelines.

Quick Start

Get up and running in minutes. Our SDKs and documentation are designed to make integration as smooth as possible.

1

Get your API key

Sign up and generate API credentials from your vendor dashboard.

2

Install the SDK

Available for PHP, JavaScript, and Python. Install via Composer, npm, or pip.

3

Make your first call

Verify a license, register a webhook, or query the catalog.

terminal

$ 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" }