Skip to main content

Maturity (Realization) Number

Calculates the Maturity number from Life Path + Expression. Represents the underlying wish or desire that surfaces around age 30-35. Requires both name and birth date.

Endpoint

POST /v1/numerology/maturity

Request parameters

FieldTypeRequiredDescription
namestringYes
datestring (date)YesBirth date

Example request

curl -X POST "https://api.asterwise.com/v1/numerology/maturity" \
-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": {
"maturity_number": 4,
"life_path_number": 1,
"expression_number": 3,
"is_master_number": false
}
}

Response fields

FieldTypeDescription
successbooleanTrue if the request succeeded
messagestringHuman-readable status message
dataobject
data.maturity_numberinteger
data.life_path_numberinteger
data.expression_numberinteger
data.is_master_numberboolean

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