Numeroloji
Yaşam yolu, ifade, ruh dürtüsü, kişilik ve uyumluluk sayıları dahil olmak üzere numeroloji profilleri hesaplayın.
Gerekli Modül
Tüm numeroloji uç noktaları, kuruluşunuz için module:numerology modülünün etkinleştirilmesini gerektirir.
Tam Profil
Doğum tarihi ve tam ada dayalı olarak bir kişi için eksiksiz bir numeroloji profili hesaplayın:
curl -X POST "https://api.astroapi.cloud/api/numerology/profile" \
-H "X-Api-Key: your-api-key" \
-H "Content-Type: application/json" \
-d '{
"dateTime": "1990-06-15T14:30",
"fullName": "Jane Elizabeth Smith",
"language": "en",
"includeText": true
}'const response = await fetch("https://api.astroapi.cloud/api/numerology/profile", {
method: "POST",
headers: {
"X-Api-Key": "your-api-key",
"Content-Type": "application/json"
},
body: JSON.stringify({
dateTime: "1990-06-15T14:30",
fullName: "Jane Elizabeth Smith",
language: "en",
includeText: true
})
});
const data = await response.json();Parametreler
| Parametre | Tür | Zorunlu | Açıklama |
|---|---|---|---|
dateTime | string | Evet | YYYY-MM-DDTHH:mm biçiminde doğum tarihi ve saati |
fullName | string | Evet | Tam doğum adı (nüfus cüzdanındaki gibi) |
language | string | Hayır | Yorum metni için dil kodu (varsayılan: "en") |
includeText | boolean | Hayır | Yorum metnini dahil et (varsayılan: false) |
Yanıt
{
"data": {
"lifePathNumber": {
"value": 7,
"isMasterNumber": false,
"isKarmicDebt": false,
"reducedFrom": 34,
"calculation": "1+9+9+0+0+6+1+5 = 31, 3+1 = 4... (full reduction)",
"text": "The Life Path 7 is the path of the seeker..."
},
"expressionNumber": {
"value": 11,
"isMasterNumber": true,
"isKarmicDebt": false,
"reducedFrom": 11,
"calculation": "J(1)+A(1)+N(5)+E(5)+... = 47, 4+7 = 11",
"text": null
},
"soulUrgeNumber": {
"value": 6,
"isMasterNumber": false,
"isKarmicDebt": false,
"reducedFrom": 15,
"calculation": "Vowels: A(1)+E(5)+E(5)+I(9)+... = 24, 2+4 = 6",
"text": null
},
"personalityNumber": {
"value": 5,
"isMasterNumber": false,
"isKarmicDebt": false,
"reducedFrom": 23,
"calculation": "Consonants: J(1)+N(5)+... = 23, 2+3 = 5",
"text": null
},
"birthdayNumber": {
"value": 6,
"isMasterNumber": false,
"isKarmicDebt": false,
"reducedFrom": 15,
"calculation": "Day: 15, 1+5 = 6",
"text": null
},
"personalYear": {
"value": 3,
"isMasterNumber": false,
"isKarmicDebt": false,
"reducedFrom": 12,
"calculation": "6+15+2024 reduced",
"text": null
},
"personalMonth": {
"value": 9,
"isMasterNumber": false,
"isKarmicDebt": false,
"reducedFrom": 9,
"calculation": "Personal year (3) + current month (6) = 9",
"text": null
},
"personalDay": {
"value": 4,
"isMasterNumber": false,
"isKarmicDebt": false,
"reducedFrom": 13,
"calculation": "Personal month (9) + current day (13) = 22, 2+2 = 4",
"text": null
},
"karmicDebtNumbers": [13, 16],
"masterNumbers": [11]
}
}NumerolojySayısı Nesnesi
| Alan | Tür | Açıklama |
|---|---|---|
value | number | Son numeroloji sayısı |
isMasterNumber | boolean | Bunun bir usta sayısı olup olmadığı (11, 22, 33) |
isKarmicDebt | boolean | Bunun bir karmik borç sayısı olup olmadığı (13, 14, 16, 19) |
reducedFrom | number | Son indirgeme öncesindeki sayı |
calculation | string | Adım adım hesaplama açıklaması |
text | string | null | Yorum metni (yalnızca includeText: true ise) |
Yaşam Yolu Sayısı
Doğum tarihinden yaşam yolu sayısını hesaplayın:
curl -X POST "https://api.astroapi.cloud/api/numerology/life-path" \
-H "X-Api-Key: your-api-key" \
-H "Content-Type: application/json" \
-d '{
"dateTime": "1990-06-15T14:30",
"language": "en",
"includeText": true
}'Parametreler
| Parametre | Tür | Zorunlu | Açıklama |
|---|---|---|---|
dateTime | string | Evet | YYYY-MM-DDTHH:mm biçiminde doğum tarihi ve saati |
language | string | Hayır | Yorum metni için dil kodu |
includeText | boolean | Hayır | Yorum metnini dahil et |
İfade Sayısı
Pisagor numerolojisini kullanarak tam addan ifade sayısını hesaplayın:
curl -X POST "https://api.astroapi.cloud/api/numerology/expression" \
-H "X-Api-Key: your-api-key" \
-H "Content-Type: application/json" \
-d '{
"fullName": "Jane Elizabeth Smith",
"language": "en",
"includeText": true
}'Parametreler
| Parametre | Tür | Zorunlu | Açıklama |
|---|---|---|---|
fullName | string | Evet | Tam doğum adı |
language | string | Hayır | Yorum metni için dil kodu |
includeText | boolean | Hayır | Yorum metnini dahil et |
Ruh Dürtüsü Sayısı
Bir addaki sesli harflerden ruh dürtüsü (kalp arzusu) sayısını hesaplayın:
curl -X POST "https://api.astroapi.cloud/api/numerology/soul-urge" \
-H "X-Api-Key: your-api-key" \
-H "Content-Type: application/json" \
-d '{
"fullName": "Jane Elizabeth Smith"
}'Kişilik Sayısı
Bir addaki ünsüzlerden kişilik sayısını hesaplayın:
curl -X POST "https://api.astroapi.cloud/api/numerology/personality" \
-H "X-Api-Key: your-api-key" \
-H "Content-Type: application/json" \
-d '{
"fullName": "Jane Elizabeth Smith"
}'Doğum Günü Sayısı
Doğum gününden doğum günü sayısını hesaplayın:
curl -X POST "https://api.astroapi.cloud/api/numerology/birthday" \
-H "X-Api-Key: your-api-key" \
-H "Content-Type: application/json" \
-d '{
"dateTime": "1990-06-15T14:30"
}'Kişisel Döngüler
Zamanlama ve planlama için kişisel yıl, ay ve gün döngülerini hesaplayın:
curl -X POST "https://api.astroapi.cloud/api/numerology/personal-cycles" \
-H "X-Api-Key: your-api-key" \
-H "Content-Type: application/json" \
-d '{
"dateTime": "1990-06-15T14:30",
"currentDate": "2024-06-15"
}'Parametreler
| Parametre | Tür | Zorunlu | Açıklama |
|---|---|---|---|
dateTime | string | Evet | YYYY-MM-DDTHH:mm biçiminde doğum tarihi ve saati |
currentDate | string | Hayır | YYYY-MM-DD biçiminde referans tarihi (varsayılan: bugün) |
Yanıt
{
"data": {
"personalYear": {
"value": 3,
"isMasterNumber": false,
"isKarmicDebt": false,
"reducedFrom": 12,
"calculation": "birth month (6) + birth day (15 → 6) + current year (2024 → 8) = 20, 2+0 = 2... reduced to 3",
"text": null
},
"personalMonth": {
"value": 9,
"isMasterNumber": false,
"isKarmicDebt": false,
"reducedFrom": 9,
"calculation": "Personal year (3) + current month (6) = 9",
"text": null
},
"personalDay": {
"value": 4,
"isMasterNumber": false,
"isKarmicDebt": false,
"reducedFrom": 13,
"calculation": "Personal month (9) + current day (15 → 6) = 15, 1+5 = 6... reduced to 4",
"text": null
}
}
}Uyumluluk
Yaşam yolu sayılarına göre iki kişi arasındaki numerolojik uyumluluğu hesaplayın:
curl -X POST "https://api.astroapi.cloud/api/numerology/compatibility" \
-H "X-Api-Key: your-api-key" \
-H "Content-Type: application/json" \
-d '{
"dateTime1": "1990-06-15T14:30",
"dateTime2": "1988-03-22T09:15"
}'const response = await fetch("https://api.astroapi.cloud/api/numerology/compatibility", {
method: "POST",
headers: {
"X-Api-Key": "your-api-key",
"Content-Type": "application/json"
},
body: JSON.stringify({
dateTime1: "1990-06-15T14:30",
dateTime2: "1988-03-22T09:15"
})
});
const data = await response.json();Parametreler
| Parametre | Tür | Zorunlu | Açıklama |
|---|---|---|---|
dateTime1 | string | Evet | Birinci kişinin YYYY-MM-DDTHH:mm biçiminde doğum tarihi ve saati |
dateTime2 | string | Evet | İkinci kişinin YYYY-MM-DDTHH:mm biçiminde doğum tarihi ve saati |
Yanıt
{
"data": {
"person1LifePath": 7,
"person2LifePath": 3,
"compatibilityScore": 72,
"relationship": "good",
"description": "Life Path 7 and Life Path 3 can form a complementary partnership. The 7 brings depth and introspection while the 3 adds creativity and social energy..."
}
}Uyumluluk Derecelendirmeleri
| Derecelendirme | Puan Aralığı | Açıklama |
|---|---|---|
"excellent" | 85–100 | Yüksek derecede uyumlu yaşam yolu sayıları |
"good" | 65–84 | Tamamlayıcı enerjilerle iyi uyumluluk |
"moderate" | 45–64 | Anlayış gerektiren orta düzey uyumluluk |
"challenging" | 0–44 | Zıtlıkla büyüme sağlayan zorlu dinamik |
Usta Sayılar
Usta sayılar (11, 22, 33) standart hesaplamada daha fazla indirgenez. Yükseltilmiş enerji ve öneme sahiptirler.
Usta Sayılar
Bir hesaplama 11, 22 veya 33 ile sonuçlandığında, isMasterNumber bayrağı true olarak ayarlanır ve değer olduğu gibi korunur. Bu durumda reducedFrom alanı value ile eşit olacaktır.
Karmik Borç Sayıları
Karmik borç sayıları (13, 14, 16, 19), geçmiş hayatlardan taşınan dersleri gösterir. Mevcut olduklarında isKarmicDebt bayrağı true olarak ayarlanır.
| Karmik Sayı | İndirgendiği | Tema |
|---|---|---|
| 13 | 4 | Çok çalışma ve disiplin |
| 14 | 5 | Özgürlüğün sorumlu kullanımı |
| 16 | 7 | Ego teslimi ve ruhsal büyüme |
| 19 | 1 | Bağımsızlık ve öz güven |