Skip to main content

Personal angel number

Compute your personal angel number from your birth date. Uses the Pythagorean Life Path number (digit-fusing method) as the base. Life Path 1-9 maps to the triple sequence (e.g. LP 4 → 444). Master numbers 11, 22, 33 map to 1111, 2222, 3333 respectively.

Endpoint

POST /v1/numerology/angel/personal

Request parameters

FieldTypeRequiredDescription
datestringYesBirth date in YYYY-MM-DD format.
namestring | nullNoOptional name for personalisation.

Example request

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

Example response

{
"success": true,
"message": "success",
"data": {
"birth_date": "1985-11-12",
"life_path": 1,
"angel_number": "111",
"number": "111",
"theme": "Manifestation, new beginnings",
"message": "Your thoughts are manifesting rapidly. Be intentional — what you focus on now becomes reality. Plant seeds deliberately.",
"guidance": "Monitor your thoughts closely. Shift any negative mental loops immediately. You are a powerful creator right now.",
"areas": [
"Manifestation",
"Thoughts",
"... and 2 more items"
],
"name": "Arjun Mehta"
}
}

Response fields

FieldTypeDescription
successbooleanTrue if the request succeeded
messagestringHuman-readable status message
dataobject
data.numberstringAngel number sequence, e.g. '111', '1111'.
data.themestringCore theme of this angel number.
data.messagestringPrimary message of this angel number.
data.guidancestringActionable guidance for this number.
data.areasarray[string]Life areas associated with this number.
data.birth_datestringBirth date used for calculation (YYYY-MM-DD).
data.life_pathintegerPythagorean Life Path number (1-9, or 11/22/33).
data.angel_numberstringAngel number sequence derived from Life Path.
data.namestring | nullName if provided.

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