Skip to main content

Karmic Lessons

Identifies karmic lessons from the name — the digit values 1-9 that are absent from the name's letter values. Missing numbers indicate areas requiring development in this lifetime.

Endpoint

POST /v1/numerology/karmic-lessons

Request parameters

FieldTypeRequiredDescription
namestringYesFull name (first and last)

Example request

curl -X POST "https://api.asterwise.com/v1/numerology/karmic-lessons" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"name":"Arjun Mehta"}'

Example response

{
"success": true,
"message": "success",
"data": {
"karmic_lessons": [
6,
7
],
"has_karmic_lessons": true
}
}

Response fields

FieldTypeDescription
successbooleanTrue if the request succeeded
messagestringHuman-readable status message
dataobject
data.karmic_lessonsarray[integer]Digit values 1-9 missing from the name. Empty list means no karmic lessons.
data.has_karmic_lessonsboolean

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