Skip to content

Numerologie

Berechnen Sie Numerologie-Profile einschließlich Lebenspfad-, Ausdrucks-, Seelendrang-, Persönlichkeits- und Kompatibilitätszahlen.

Erforderliches Modul

Alle Numerologie-Endpunkte erfordern das aktivierte Modul module:numerology für Ihre Organisation.

Vollständiges Profil

Berechnen Sie ein vollständiges Numerologie-Profil für eine Person auf Basis ihres Geburtsdatums und vollständigen Namens:

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();

Parameter

ParameterTypErforderlichBeschreibung
dateTimestringJaGeburtsdatum und -uhrzeit im Format YYYY-MM-DDTHH:mm
fullNamestringJaVollständiger Geburtsname (wie auf der Geburtsurkunde)
languagestringNeinSprachcode für Interpretationstext (Standard: "en")
includeTextbooleanNeinInterpretationstext einschließen (Standard: false)

Antwort

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]
    }
}

NumerologieZahl-Objekt

FeldTypBeschreibung
valuenumberDie endgültige Numerologie-Zahl
isMasterNumberbooleanOb es sich um eine Meisterzahl handelt (11, 22, 33)
isKarmicDebtbooleanOb es sich um eine karmische Schuldzahl handelt (13, 14, 16, 19)
reducedFromnumberDie Zahl vor der endgültigen Reduktion
calculationstringSchrittweise Berechnungserklärung
textstring | nullInterpretationstext (nur wenn includeText: true)

Lebenspfadzahl

Die Lebenspfadzahl aus einem Geburtsdatum berechnen:

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
  }'

Parameter

ParameterTypErforderlichBeschreibung
dateTimestringJaGeburtsdatum und -uhrzeit im Format YYYY-MM-DDTHH:mm
languagestringNeinSprachcode für Interpretationstext
includeTextbooleanNeinInterpretationstext einschließen

Ausdruckszahl

Die Ausdruckszahl aus einem vollständigen Namen mit pythagoreischer Numerologie berechnen:

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
  }'

Parameter

ParameterTypErforderlichBeschreibung
fullNamestringJaVollständiger Geburtsname
languagestringNeinSprachcode für Interpretationstext
includeTextbooleanNeinInterpretationstext einschließen

Seelendrangzahl

Die Seelendrangzahl (Herzensbegehren) aus den Vokalen eines Namens berechnen:

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

Persönlichkeitszahl

Die Persönlichkeitszahl aus den Konsonanten eines Namens berechnen:

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

Geburtstagszahl

Die Geburtstagszahl aus dem Geburtstag berechnen:

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

Persönliche Zyklen

Persönliche Jahr-, Monats- und Tageszyklen für Timing und Planung berechnen:

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

Parameter

ParameterTypErforderlichBeschreibung
dateTimestringJaGeburtsdatum und -uhrzeit im Format YYYY-MM-DDTHH:mm
currentDatestringNeinReferenzdatum im Format YYYY-MM-DD (Standard: heute)

Antwort

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

Kompatibilität

Numerologische Kompatibilität zwischen zwei Personen auf Basis ihrer Lebenspfadzahlen berechnen:

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();

Parameter

ParameterTypErforderlichBeschreibung
dateTime1stringJaGeburtsdatum und -uhrzeit der ersten Person im Format YYYY-MM-DDTHH:mm
dateTime2stringJaGeburtsdatum und -uhrzeit der zweiten Person im Format YYYY-MM-DDTHH:mm

Antwort

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

Kompatibilitätsbewertungen

BewertungPunktebereichBeschreibung
"excellent"85–100Hochkompatible Lebenspfadzahlen
"good"65–84Gute Kompatibilität mit ergänzenden Energien
"moderate"45–64Mäßige Kompatibilität, erfordert Verständnis
"challenging"0–44Herausfordernde Dynamik, Wachstum durch Kontrast

Meisterzahlen

Meisterzahlen (11, 22, 33) werden bei der Standardberechnung nicht weiter reduziert. Sie tragen verstärkte Energie und Bedeutung.

Meisterzahlen

Wenn eine Berechnung 11, 22 oder 33 ergibt, wird das isMasterNumber-Flag auf true gesetzt und der Wert unverändert beibehalten. Das reducedFrom-Feld entspricht in diesem Fall value.

Karmische Schuldzahlen

Karmische Schuldzahlen (13, 14, 16, 19) zeigen Lektionen aus früheren Leben an. Wenn vorhanden, wird das isKarmicDebt-Flag auf true gesetzt.

Karmische ZahlReduziert aufThema
134Harte Arbeit und Disziplin
145Verantwortungsvoller Umgang mit Freiheit
167Ego-Aufgabe und spirituelles Wachstum
191Unabhängigkeit und Selbstvertrauen

AstroAPI Documentation