/v1/hebrew
Hebrew gematria
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}