Complete Developer Documentation — SDKs, APIs, Connectors, and Platform Guides
- Python SDK - Complete Python SDK reference and guides
- JavaScript/TypeScript SDK - Node.js and browser SDK documentation
- Go SDK - Go SDK reference and examples
- API Reference - Complete REST API documentation
- Installation - Install ServerlessKit CLI
- Quick Start - Get started with CLI commands
- Commands Reference - Complete command reference
- Configuration - CLI configuration options
- Development Guide - Build custom connectors
- Connector API - Connector development API
- Marketplace - Publishing to marketplace
- Revenue Sharing - Monetize your connectors
from serverlesskit import ServerlessKit
# Initialize client
sk = ServerlessKit(
api_key="sk_...",
workspace_id="ws_..."
)
# Use connectors
stripe = sk.connectors.get("stripe")
payment = stripe.create_payment_intent(amount=1000, currency="usd")
# Install CLI
npm install -g @serverlesskit/cli
# Initialize project
sk init my-project
# Deploy infrastructure
sk deploy --env production
Section | Description | Status |
---|---|---|
SDK Reference | Complete SDK documentation for all languages | ✅ Complete |
CLI Guide | Command-line interface documentation | ✅ Complete |
API Reference | REST API endpoints and schemas | ✅ Complete |
Connectors | Connector development and marketplace | ✅ Complete |
Platform | Platform architecture and features | ✅ Complete |
Examples | Code examples and tutorials | 🔗 External |
Visit docs.serverlesskit.com for the complete, searchable documentation with interactive examples.
Documentation maintained by the ServerlessKit team and community contributors