Developer Documentation
Keplor Documentation
Everything you need to integrate, build, and scale with Keplor's AI platform. From quick starts to advanced guides.
Documentation
API Reference
SDKs & Libraries
Configuration
Quick Start Guide
Get up and running with Keplor in minutes. This guide will walk you through setting up your account, obtaining API keys, and making your first API call.
1. Install the SDK
npm install @keplor/sdk
2. Initialize the Client
import { Keplor } from '@keplor/sdk'; const keplor = new Keplor({ apiKey: 'your-api-key-here' });
3. Make Your First Request
const response = await keplor.ai.generate({ prompt: "Hello, Keplor!", model: "gpt-4" }); console.log(response.text);
API Reference
Complete reference for all Keplor API endpoints, including request/response formats, authentication, and error handling.
AI Generation
Generate text, images, and other content using AI models.
Model Management
Manage and deploy custom AI models.
Analytics
Access usage analytics and performance metrics.
Webhooks
Set up real-time notifications for events.
Official SDKs
Use our official SDKs to integrate Keplor into your applications quickly and easily.
JavaScript/Node.js
npm install @keplor/sdk
Python
pip install keplor-python
Go
go get github.com/keplor/go-sdk
PHP
composer require keplor/php-sdk