Ki2Claude - Claude Sonnet 4 API

A simple, Dockerized Claude AI compatible API service for Claude Sonnet 4 model

Ki2Claude

A Dockerized Claude AI compatible API service specifically for Claude Sonnet 4 model

Get Started
🐳

Dockerized

One-command startup with Docker. Simple and easy to deploy anywhere.

🔑

Fixed API Key

Use the fixed API key ki2api-key-2024 for easy integration.

📡

Streaming Support

Supports SSE streaming responses for real-time interaction.

Quick Start

Get started with Ki2Claude in just a few simple steps:

Zero Configuration
Manual Setup

Simply ensure you're logged into Kiro, then start with one command:

docker-compose up -d

The service will start at http://localhost:8989

API Examples

List Models

curl -H "Authorization: Bearer ki2api-key-2024" \
http://localhost:8989/v1/models

Chat Example

curl -X POST http://localhost:8989/v1/messages \
-H "Authorization: Bearer ki2api-key-2024" \
-H "Content-Type: application/json" \
-d '{
"model": "claude-sonnet-4-20250514",
"messages": [
{"role": "user", "content": "Hello, introduce yourself"}
],
"max_tokens": 1000
}'