Zum Inhalt springen
GET /v1/balanced-ternary

Balanced ternary

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/numrep-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/numrep-api/v1/balanced-ternary" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/numrep-api/v1/balanced-ternary", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/numrep-api/v1/balanced-ternary");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/numrep-api/v1/balanced-ternary",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "input": {
            "n": "5"
        },
        "decimal": "5",
        "digits_note": "T means -1",
        "balanced_ternary": "1TT"
    },
    "meta": {
        "timestamp": "2026-06-03T17:42:13.746Z",
        "request_id": "3c3bb68f-dc1d-4f66-bf7a-739d2be69e7c"
    },
    "status": "ok",
    "message": "Balanced ternary",
    "success": true
}