Zum Inhalt springen
GET /v1/hebrew

Hebrew gematria

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "note": "Hebrew gematria. Standard (Mispar Hechrachi) sums the base letter values; Gadol counts the five final letters as 500–900. Example: שלום = 376.",
        "inputs": {
            "text": "שלום"
        },
        "letters": 4,
        "gadol_value": 936,
        "reduced_value": 7,
        "standard_value": 376,
        "skipped_characters": []
    },
    "meta": {
        "timestamp": "2026-06-05T11:30:25.453Z",
        "request_id": "0b1d4255-0e66-461d-93fa-c5356d1aa6bf"
    },
    "status": "ok",
    "message": "Hebrew gematria",
    "success": true
}