/v1/english
English gematria
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/gematria-api/v1/english" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gematria-api/v1/english", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gematria-api/v1/english");
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/english",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"note": "English gematria: ordinal/simple (a=1 … z=26), Pythagorean (each letter reduced to 1–9) and Sumerian (ordinal × 6). Example: HELLO = 52 ordinal.",
"inputs": {
"text": "HELLO"
},
"letters": 5,
"ordinal_value": 52,
"reduced_value": 7,
"sumerian_value": 312,
"pythagorean_value": 25
},
"meta": {
"timestamp": "2026-06-05T11:30:25.234Z",
"request_id": "67d9a6b1-f231-4475-a7e2-9c349a390d09"
},
"status": "ok",
"message": "English gematria",
"success": true
}