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.

baseURL: http://localhost:8787/v1Hold dan refund dipisahkan agar saldo tidak terasa misterius.
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." }]
});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.
Harga dibuat versioned dari hari pertama.
Key uji coba dengan limit rendah untuk integrasi awal.
Top up, hold, charge, dan refund dicatat per request.
Setiap respon membawa request id untuk investigasi cepat.
Price snapshot menjaga histori usage tetap benar.
SDK OpenAI langsung jalan.
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"}]}'