/v1/english
English gematria
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"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
}