Vai al contenuto
GET /v1/lifepath

Life Path number from a birth date

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/numerology-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/numerology-api/v1/lifepath" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/numerology-api/v1/lifepath", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/numerology-api/v1/lifepath");
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/lifepath",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "date": "1879-03-14",
        "note": "Life Path = reduce(month) + reduce(day) + reduce(year), then reduce — master numbers 11/22/33 preserved.",
        "life_path": {
            "master": false,
            "number": 6,
            "meaning": "The Nurturer — responsible, caring, harmonious, protective.",
            "reduction_steps": [
                15,
                6
            ]
        },
        "components": {
            "day": {
                "steps": [
                    14,
                    5
                ],
                "value": 5
            },
            "sum": 15,
            "year": {
                "steps": [
                    1879,
                    25,
                    7
                ],
                "value": 7
            },
            "month": {
                "steps": [
                    3
                ],
                "value": 3
            }
        },
        "birthday_number": {
            "master": false,
            "number": 5,
            "meaning": "The Adventurer — freedom-loving, versatile, curious, dynamic."
        }
    },
    "meta": {
        "timestamp": "2026-06-04T01:59:12.381Z",
        "request_id": "4c12b835-36ca-4fbf-a03a-f26e0cfaa7a1"
    },
    "status": "ok",
    "message": "Life Path number from a birth date",
    "success": true
}