clovfla-prefixed API keys

Clovflapy

Gateway LLM pay-as-you-go yang terasa seperti control room: saldo jelas, key aman, usage bisa diaudit, dan endpoint kompatibel dengan SDK OpenAI tanpa membuka detail routing internal ke pelanggan.

Prefix key: clovfla Base URL siap diganti domain One-time key reveal
Visual control room Clovflapy dengan ledger, wallet, dan API traffic
live trafficbaseURL: http://localhost:8787/v1
Available credits198.970

Hold dan refund dipisahkan agar saldo tidak terasa misterius.

Key lifecycleclovfla

Generate, reveal sekali, revoke, dan audit dari console.

const client = new OpenAI({
  apiKey: "clovfla_sk_live_...",
  baseURL: "http://localhost:8787/v1"
});

await client.chat.completions.create({
  model: "deepseek-chat",
  messages: [{ role: "user", content: "Ship it." }]
});
Product direction

Bukan dashboard demo. Ini console untuk bisnis API.

Semua fitur diarahkan ke satu alur: user daftar, top up, generate key, panggil model, lalu memantau biaya tanpa perlu tahu provider mana yang sedang dipakai di belakang.

Wallet first

Saldo available, reserved, dan ledger membuat biaya request bisa dijelaskan.

Key hygiene

Full key hanya tampil sekali, prefix tetap clovfla, dan revoke tidak menghapus riwayat.

Internal routing

Operator bisa mengelola route dan health, pelanggan melihat API yang stabil.

Pricing

Harga dibuat versioned dari hari pertama.

Coba dengan test key
StarterTest mode

Key uji coba dengan limit rendah untuk integrasi awal.

ProductionLive mode

Top up, hold, charge, dan refund dicatat per request.

AuditRequest ID

Setiap respon membawa request id untuk investigasi cepat.

MarginLocked

Price snapshot menjaga histori usage tetap benar.

Quickstart

SDK OpenAI langsung jalan.

OpenAI-compatible
curl http://localhost:8787/v1/chat/completions \
  -H "Authorization: Bearer clovfla_sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{"model":"deepseek-chat","messages":[{"role":"user","content":"Halo Clovflapy"}]}'