/v1/lifepath
Life Path number from a birth date
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}