/v1/meta
Spec & meanings
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/numerology-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/numerology-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/numerology-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/numerology-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"api": "numerology",
"note": "All numerology is computed locally and deterministically — no key, no third-party service. For entertainment and self-reflection.",
"system": "Pythagorean",
"meanings": {
"1": "The Leader — independent, pioneering, driven, self-reliant.",
"2": "The Peacemaker — cooperative, diplomatic, sensitive, supportive.",
"3": "The Communicator — expressive, creative, social, optimistic.",
"4": "The Builder — practical, disciplined, hard-working, grounded.",
"5": "The Adventurer — freedom-loving, versatile, curious, dynamic.",
"6": "The Nurturer — responsible, caring, harmonious, protective.",
"7": "The Seeker — analytical, introspective, spiritual, studious.",
"8": "The Powerhouse — ambitious, organised, material mastery, authority.",
"9": "The Humanitarian — compassionate, idealistic, generous, artistic.",
"11": "Master 11 — intuitive visionary, illumination, inspiration.",
"22": "Master 22 — the master builder, big dreams made real.",
"33": "Master 33 — the master teacher, selfless compassion."
},
"endpoints": [
"/v1/lifepath",
"/v1/name",
"/v1/personal",
"/v1/meta"
],
"letter_values": {
"a": 1,
"b": 2,
"c": 3,
"d": 4,
"e": 5,
"f": 6,
"g": 7,
"h": 8,
"i": 9,
"j": 1,
"k": 2,
"l": 3,
"m": 4,
"n": 5,
"o": 6,
"p": 7,
"q": 8,
"r": 9,
"s": 1,
"t": 2,
"u": 3,
"v": 4,
"w": 5,
"x": 6,
"y": 7,
"z": 8
},
"master_numbers": [
11,
22,
33
]
},
"meta": {
"timestamp": "2026-06-04T01:59:12.662Z",
"request_id": "bb19ac20-59d9-4610-bab1-5b8d06d5dea4"
},
"status": "ok",
"message": "Meta",
"success": true
}