Zum Inhalt springen
GET /v1/evaluate

Evaluate under an assignment

Live testen

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

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

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

API-Key holen

Code-Snippets

curl "https://api.oanor.com/truthtable-api/v1/evaluate" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/truthtable-api/v1/evaluate", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/truthtable-api/v1/evaluate");
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/truthtable-api/v1/evaluate",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

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

{
    "data": {
        "result": 0,
        "boolean": false,
        "variables": [
            "P",
            "Q"
        ],
        "assignment": {
            "P": 1,
            "Q": 0
        },
        "expression": "P -> Q"
    },
    "meta": {
        "timestamp": "2026-06-03T17:42:16.804Z",
        "request_id": "6717889c-64f4-4564-973a-0fb905d0c791"
    },
    "status": "ok",
    "message": "Evaluate",
    "success": true
}