Avant de commencer
- URL de base : https://toonverter.com/api
- Tous les endpoints parlent JSON via HTTPS
- Limites généreuses pour l’évaluation — écris-nous si tu as besoin de plus
Démarrage rapide cURL
curl https://toonverter.com/api/convert \
-H "Content-Type: application/json" \
-d '{
"input_data": "{\"name\": \"Nova\", \"role\": \"moderator\"}",
"direction": "json_to_toon"
}'
Helper Python avec retries
import requests
from requests.adapters import HTTPAdapter
from urllib3.util.retry import Retry
session = requests.Session()
session.mount(
"https://",
HTTPAdapter(max_retries=Retry(total=3, backoff_factor=0.5)),
)
payload = {
"input_data": "{\"session\": 42, \"status\": \"active\"}",
"direction": "json_to_toon",
}
resp = session.post("https://toonverter.com/api/convert", json=payload, timeout=10)
resp.raise_for_status()
print(resp.json()["output"])
Exemple Node/Edge
import fetch from "node-fetch";
export async function convertJsonToToon(payload) {
const response = await fetch("https://toonverter.com/api/convert", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
input_data: JSON.stringify(payload),
direction: "json_to_toon",
}),
});
if (!response.ok) {
throw new Error(`TOON API error: ${response.status}`);
}
const data = await response.json();
return data.output;
}
Valide avant le LLM
Appelle /api/validate avec la même charge pour empêcher un JSON ou TOON corrompu d’atteindre les agents. Les réponses sont légères : parfait pour du guardrail ou du CI.
Conseils production
- Enveloppe l’API avec ton observabilité (latence + delta de tokens)
- Cache les conversions pour des réponses idempotentes
- Utilise l’historique UI pour du QA manuel
- Prévois les fallback (revenir à JSON si l’API est indisponible)