数秘術
ライフパス、表現数、ソウルアージ、パーソナリティ、相性数を含む数秘術プロファイルを計算します。
必要なモジュール
すべての数秘術エンドポイントには、組織で module:numerology モジュールが有効になっている必要があります。
完全プロファイル
出生日と完全な名前に基づいて、人物の完全な数秘術プロファイルを計算する:
bash
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
}'javascript
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();パラメータ
| パラメータ | 型 | 必須 | 説明 |
|---|---|---|---|
dateTime | string | はい | YYYY-MM-DDTHH:mm 形式の出生日時 |
fullName | string | はい | 完全な出生名(出生証明書記載のもの) |
language | string | いいえ | 解釈テキストの言語コード(デフォルト:"en") |
includeText | boolean | いいえ | 解釈テキストを含める(デフォルト:false) |
レスポンス
json
{
"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]
}
}NumerologyNumberオブジェクト
| フィールド | 型 | 説明 |
|---|---|---|
value | number | 最終的な数秘術数 |
isMasterNumber | boolean | マスターナンバー(11、22、33)かどうか |
isKarmicDebt | boolean | カルマ負債数(13、14、16、19)かどうか |
reducedFrom | number | 最終還元前の数 |
calculation | string | ステップバイステップの計算説明 |
text | string | null | 解釈テキスト(includeText: true の場合のみ) |
ライフパスナンバー
出生日からライフパスナンバーを計算する:
bash
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
}'パラメータ
| パラメータ | 型 | 必須 | 説明 |
|---|---|---|---|
dateTime | string | はい | YYYY-MM-DDTHH:mm 形式の出生日時 |
language | string | いいえ | 解釈テキストの言語コード |
includeText | boolean | いいえ | 解釈テキストを含める |
エクスプレッションナンバー
ピタゴラス数秘術を使用して完全な名前からエクスプレッションナンバーを計算する:
bash
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
}'パラメータ
| パラメータ | 型 | 必須 | 説明 |
|---|---|---|---|
fullName | string | はい | 完全な出生名 |
language | string | いいえ | 解釈テキストの言語コード |
includeText | boolean | いいえ | 解釈テキストを含める |
ソウルアージナンバー
名前の母音からソウルアージ(ハートのデザイア)ナンバーを計算する:
bash
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"
}'パーソナリティナンバー
名前の子音からパーソナリティナンバーを計算する:
bash
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"
}'バースデーナンバー
出生日からバースデーナンバーを計算する:
bash
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"
}'パーソナルサイクル
タイミングと計画のための個人年、個人月、個人日サイクルを計算する:
bash
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"
}'パラメータ
| パラメータ | 型 | 必須 | 説明 |
|---|---|---|---|
dateTime | string | はい | YYYY-MM-DDTHH:mm 形式の出生日時 |
currentDate | string | いいえ | YYYY-MM-DD 形式の基準日(デフォルト:今日) |
レスポンス
json
{
"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
}
}
}相性
ライフパスナンバーに基づいて2人の数秘術的相性を計算する:
bash
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"
}'javascript
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();パラメータ
| パラメータ | 型 | 必須 | 説明 |
|---|---|---|---|
dateTime1 | string | はい | 最初の人の YYYY-MM-DDTHH:mm 形式の出生日時 |
dateTime2 | string | はい | 2番目の人の YYYY-MM-DDTHH:mm 形式の出生日時 |
レスポンス
json
{
"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..."
}
}相性評価
| 評価 | スコア範囲 | 説明 |
|---|---|---|
"excellent" | 85〜100 | 高い相性のライフパスナンバー |
"good" | 65〜84 | 補完的なエネルギーを持つ良好な相性 |
"moderate" | 45〜64 | 理解が必要な中程度の相性 |
"challenging" | 0〜44 | チャレンジングなダイナミクス、対比を通じた成長 |
マスターナンバー
マスターナンバー(11、22、33)は標準計算でそれ以上還元されません。増幅されたエネルギーと重要性を持っています。
マスターナンバー
計算結果が11、22、または33になった場合、isMasterNumber フラグが true に設定され、値はそのまま保持されます。この場合、reducedFrom フィールドは value と等しくなります。
カルマ負債数
カルマ負債数(13、14、16、19)は過去世から持ち越されたレッスンを示します。存在する場合、isKarmicDebt フラグが true に設定されます。
| カルマナンバー | 還元後 | テーマ |
|---|---|---|
| 13 | 4 | 努力と規律 |
| 14 | 5 | 自由の責任ある使用 |
| 16 | 7 | エゴの降伏と精神的成長 |
| 19 | 1 | 独立と自立 |