Skip to main content

Today's angel number

Compute today's angel number from the current date. The date's digits are summed and reduced to a single digit (1-9), then the triple sequence of that digit is returned (e.g. digit 3 → angel number 333). The same number is returned for all callers on the same date.

Endpoint

GET /v1/numerology/angel/today

Request parameters

No fields documented in the OpenAPI schema.

Example request

curl -X GET "https://api.asterwise.com/v1/numerology/angel/today" \
-H "Authorization: Bearer YOUR_API_KEY"

Example response

{
"success": true,
"message": "success",
"data": {
"date": "2026-05-28",
"daily_digit": 7,
"angel_number": "777",
"number": "777",
"theme": "Spiritual awakening, inner wisdom",
"message": "You are on the right path spiritually. Luck and divine alignment are present. Continue deepening your spiritual practice…",
"guidance": "Trust your intuition completely. You are a clear channel for higher wisdom right now.",
"areas": [
"Spirituality",
"Luck",
"... and 3 more items"
]
}
}

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.datestringDate for which this number was computed (YYYY-MM-DD).
data.daily_digitintegerReduced single digit from today's date (1-9).
data.angel_numberstringThe angel number sequence derived from today's date.

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