AstroAsk Docs
API referenceNumerologyV1NumerologyCore numbers

POST /v1/numerology/core-numbers

Full numerology profile for a name + birth date: Life Path, Birthday, Destiny, Soul Urge, Personality, Maturity and Personal Year, plus karmic lessons, karmic debts and master numbers. Supports Pythagorean/Chaldean systems and western/vedic tradition presets.

POST
/v1/numerology/core-numbers

Authorization

ApiKeyAuth
X-API-Key<token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://example.com/v1/numerology/core-numbers" \  -H "Content-Type: application/json" \  -d '{    "name": "Priya Sharma",    "date": "1990-01-15T10:30:00"  }'
{  "success": true,  "data": {    "tradition": "vedic",    "lifePathMethod": "reduce-components",    "system": "chaldean",    "name": "Priya Sharma",    "dateOfBirth": "1990-01-15",    "lifePath": {      "value": 8,      "root": 8,      "isMaster": false,      "karmicDebt": null,      "rulingPlanet": 6,      "planetName": "Saturn",      "keyword": "ambition & power"    },    "birthday": {      "value": 6,      "root": 6,      "isMaster": false,      "karmicDebt": null,      "rulingPlanet": 5,      "planetName": "Venus",      "keyword": "harmony & responsibility"    },    "destiny": {      "value": 11,      "root": 2,      "isMaster": true,      "karmicDebt": null,      "rulingPlanet": 1,      "planetName": "Moon",      "keyword": "diplomacy & sensitivity"    },    "soulUrge": {      "value": 4,      "root": 4,      "isMaster": false,      "karmicDebt": null,      "rulingPlanet": 7,      "planetName": "Rahu",      "keyword": "discipline & structure"    },    "personality": {      "value": 7,      "root": 7,      "isMaster": false,      "karmicDebt": null,      "rulingPlanet": 8,      "planetName": "Ketu",      "keyword": "introspection & wisdom"    },    "maturity": {      "value": 1,      "root": 1,      "isMaster": false,      "karmicDebt": null,      "rulingPlanet": 0,      "planetName": "Sun",      "keyword": "leadership & independence"    },    "personalYear": {      "value": 8,      "root": 8,      "isMaster": false,      "karmicDebt": null,      "rulingPlanet": 6,      "planetName": "Saturn",      "keyword": "ambition & power"    },    "karmicLessons": [      6,      7    ],    "karmicDebts": [],    "masterNumbers": [      11    ],    "summary": "Priya Sharma — Life Path 8 (Saturn, ambition & power); Destiny 11 (Moon); Soul Urge 4; Personality 7. Master number(s): 11. Karmic lesson(s): 6, 7."  }}