Documentation
Everything you need to integrate CoverKit into your application
Quick Start Guides
Getting Started
Set up your CoverKit account and make your first API call in minutes
5 min read
Quote & Bind Flow
Learn how to generate quotes and bind policies programmatically
10 min read
Claims Management
Submit and track insurance claims through the API
8 min read
Webhooks
Configure webhooks to receive real-time event notifications
7 min read
API Reference
Official SDKs
🟨
JavaScript / TypeScript
Full-featured SDK for Node.js and browser environments
npm install @coverkit/sdk🐍
Python
Pythonic SDK with async/await support
pip install coverkit🐹
Go
Idiomatic Go SDK with full type safety
go get github.com/coverkit/coverkit-goCode Examples
JavaScript
import { CoverKit } from '@coverkit/sdk';
const coverkit = new CoverKit('sk_live_...');
const quote = await coverkit.quotes.create({
product: 'shipping-protection',
coverage_amount: 10000,
shipment_value: 5000,
destination: 'US',
});
console.log(quote.premium); // 45.00