Ir al contenido
GET /v1/meta

Spec & meanings

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/numerology-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}