Zum Inhalt springen
GET /v1/english

English 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/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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}