/v1/meta
Spec
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/gematria-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gematria-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gematria-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"notes": "Pass the word or phrase as 'text'. Non-letter characters are ignored. Hebrew uses the Unicode block U+05D0–U+05EA; Greek is case-insensitive.",
"service": "gematria-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/greek": "Greek isopsephy with the Milesian numerals.",
"GET /v1/hebrew": "Hebrew gematria — standard, gadol (final letters) and reduced values.",
"GET /v1/english": "English ordinal, Pythagorean and Sumerian gematria."
},
"description": "Gematria and isopsephy calculator: numeric letter-value sums for Hebrew (standard and gadol), Greek (Milesian isopsephy) and English (ordinal, Pythagorean, Sumerian)."
},
"meta": {
"timestamp": "2026-06-05T11:30:25.530Z",
"request_id": "1e03b879-33ea-4e53-9c53-5829279978bb"
},
"status": "ok",
"message": "Meta",
"success": true
}