Klint

Overview

Live routing telemetry and account status

All systems operational
DocsKeys

Live route

Streaming

> POST /v1/chat/completions · claude-opus · 142ms · 200

> POST /v1/chat/completions · gpt-5.5 · 118ms · 200

> POST /v1/messages · claude-opus · 156ms · 200

> POST /v1/chat/completions · grok-3 · 224ms · 200

Live telemetry

Streaming

> edge-us-west · claude-opus · 142ms · 200 OK

> edge-eu-central · gpt-5.5 · 118ms · 200 OK

> edge-ap-southeast · gemini-2.5-pro · 191ms · 200 OK

Queries / sec
12,847
+4.2%
p99 latency
380ms
stable
Error rate
0.03%
↓ 0.01%
Edge nodes
24 / 24
all healthy

Endpoint health

  • POST /v1/chat/completions

    142msOperational
  • POST /v1/embeddings

    890msDegraded
  • POST /v1/messages

    118msOperational
  • POST /v1/images/generations

    2.1sOperational

Current plan

Pro

$39/mo

Renews July 15, 2026

Token balance

1.28M remaining

0.85M used · 2.13M allocated

API key

Production prefix. Full key shown once at creation.

klint_sk_live_a3f9••••••••

Quick start

Claude Code · Codex · OpenAI SDK

Claude Code guide
from openai import OpenAI

client = OpenAI(
    api_key="klint_sk_live_a3f9...",
    base_url="https://api.tryklint.com/v1"
)

response = client.chat.completions.create(
    model="claude-opus",
    messages=[{"role": "user", "content": "Refactor this module"}]
)