Μετάβαση στο περιεχόμενο
GET /v1/lifepath

Life Path number from a birth date

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/numerology-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

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