Preise
Für hochvolumige Entscheidungstools: Du zahlst Input, Output ist gratis. Credits betreiben gehostete Tools auf jevtypesafe.org — keine TypeSafe-API-Schlüssel.
- Input-Tokens
- $0.25–$0.42/M
- Output-Tokens
- Gratis
- Pro Entscheidung (Ø)
- ≈$0.0004
- Latenz
- 70–500ms
Credits kaufen — Start in einer Minute
Pack wählen, mit Karte zahlen, Guthaben sofort da. Credits verfallen nicht, solange das Konto aktiv ist. Größere Packs = niedrigerer effektiver Satz.
Loading bot check…
Sicherer Checkout via Stripe · Credits sofort auf dem Konto · Abrechnung in Konto verwalten.
Die gehostete Decide-API aufrufen
Nach Aufladung und Anlegen eines jv_live_-Schlüssels unter Konto: POST an /api/v1/decide. Dieselbe Balance gilt für fertige Tools.
curl https://jevtypesafe.org/api/v1/decide \
-H "Authorization: Bearer $JEV_API_KEY" \
-H "Content-Type: application/json" \
-d '{"state":"Customer: my card was charged twice",
"questions":{"topic":{"type":"choice",
"instructions":"Route this message",
"criteria":{"billing":"money","bug":"broken","account":"login"}}}}'import os, requests
r = requests.post(
"https://jevtypesafe.org/api/v1/decide",
headers={"Authorization": f"Bearer {os.environ['JEV_API_KEY']}"},
json={
"state": "Customer: my card was charged twice",
"questions": {
"topic": {
"type": "choice",
"instructions": "Route this message",
"criteria": {"billing": "money", "bug": "broken", "account": "login"},
}
},
},
)
print(r.json())const r = await fetch("https://jevtypesafe.org/api/v1/decide", {
method: "POST",
headers: {
Authorization: `Bearer ${process.env.JEV_API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
state: "Customer: my card was charged twice",
questions: {
topic: {
type: "choice",
instructions: "Route this message",
criteria: { billing: "money", bug: "broken", account: "login" },
},
},
}),
});
console.log(await r.json());Was das konkret heißt
Bei $0.42 pro Million Input-Tokens kostet eine typische Triage-Entscheidung etwa $0.0004 laut veröffentlichten Benchmarks. Output ist gratis — mehrere Fragen in einem Tool-Aufruf bleiben günstig.
- 1.000 Entscheidungen ≈ $0,40
- 1 Million Entscheidungen ≈ $400
- Anonyme Besucher: 5 Gratis-Läufe
- Registrierte Konten: 50k Gratis-Credits pro Monat
- Batch CSV/TXT (nur angemeldet) — bis 25 Zeilen pro Upload, 1 Zeile = 1 Credit. Anonyme Testversion bleibt Einzellauf.
Wofür diese Credits sind
Credit-Packs betreiben die gehosteten Entscheidungstools auf dieser Seite (Formulare, Batch-Import, Kontostand). Keine TypeSafe-API-Schlüssel, keine downloadbaren Gewichte, kein roher Modellzugang.