Skip to main content

Chaldean Numerology Profile

Computes a full Chaldean numerology profile. Chaldean uses a different letter-value table than Pythagorean (numbers 1-8 only; 9 is sacred). Returns name number, birth number, and compound destiny number with interpretations.

Endpoint

POST /v1/numerology/chaldean

Request parameters

FieldTypeRequiredDescription
namestringYesPerson name (BirthInput name)
datestring (date)YesBirth date YYYY-MM-DD (BirthInput date)

Example request

curl -X POST "https://api.asterwise.com/v1/numerology/chaldean" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"name":"Arjun Mehta","date":"1985-11-12"}'

Example response

{
"success": true,
"message": "success",
"data": {
"system": "chaldean",
"full_name": "Arjun Mehta",
"birth_date": "1985-11-12",
"name_number": {
"raw": 34,
"reduced": 7,
"theme": "Wisdom",
"keywords": [
"analysis",
"introspection",
"... and 1 more item"
],
"interpretation": "Contemplative energy with deep analytical and spiritual gifts."
},
"birth_number": {
"raw": 28,
"reduced": 1,
"theme": "Leadership",
"keywords": [
"independence",
"initiative",
"... and 1 more item"
],
"interpretation": "Strong individual energy with natural leadership qualities."
},
"compound_number": {
"raw": 62,
"reduced": 8,
"theme": "Power",
"keywords": [
"ambition",
"authority",
"... and 1 more item"
],
"interpretation": "Commanding energy oriented toward achievement and recognition."
}
}
}

Response fields

FieldTypeDescription
successbooleanTrue if the request succeeded
messagestringHuman-readable status message
dataobject
data.systemstring
data.full_namestring
data.birth_datestring
data.name_numberobject
data.name_number.rawinteger
data.name_number.reducedinteger
data.name_number.themestring
data.name_number.keywordsarray[string]
data.name_number.interpretationstring
data.birth_numberobject
data.birth_number.rawinteger
data.birth_number.reducedinteger
data.birth_number.themestring
data.birth_number.keywordsarray[string]
data.birth_number.interpretationstring
data.compound_numberobject
data.compound_number.rawinteger
data.compound_number.reducedinteger
data.compound_number.themestring
data.compound_number.keywordsarray[string]
data.compound_number.interpretationstring

Errors

CodeDescriptionReference
authentication_failedMissing or invalid API key.authentication_failed
ephemeris_unavailableUpstream ephemeris service error.ephemeris_unavailable
insufficient_tierAPI key tier does not include this endpoint.insufficient_tier
internal_errorUnexpected server error.internal_error
ip_rate_limit_exceededToo many requests in a short window.ip_rate_limit_exceeded
payload_too_largeRequest body exceeds the size limit.payload_too_large
resource_not_foundReferenced resource was not found.resource_not_found
validation_errorRequest body failed schema validation.validation_error