Skip to main content

Get number meaning by context

Returns interpretation details for a specific number within a numerology context. Query context defaults to general (same meanings as life path). Requires authenticated API key access (Core tier or above in product terms). Returns meaning text and optional thematic guidance fields.

Endpoint

GET /v1/numerology/meaning/{number}

Request parameters

FieldTypeRequiredDescription
numberintegerYes
contextstringNoInterpretation family. general defaults to life_path meanings; other values select that specific table.

Example request

curl -X GET "https://api.asterwise.com/v1/numerology/meaning/7?context=general" \
-H "Authorization: Bearer YOUR_API_KEY"

Example response

{
"success": true,
"message": "success",
"data": {
"number": 7,
"context": "general",
"interpretation": "You are the seeker of truth and wisdom. Your life purpose involves spiritual growth, analysis, and understanding life's…",
"keywords": [
"Spirituality",
"Analysis",
"... and 3 more items"
],
"theme": null,
"opportunities": [],
"challenges": [],
"advice": null
}
}

Response fields

FieldTypeDescription
successbooleanTrue if the request succeeded
messagestringHuman-readable status message
dataobject
data.numberintegerNumber being interpreted
data.contextstringNumerology context for interpretation (general uses life_path meanings)
data.interpretationstringNarrative meaning for the number in context
data.keywordsarray[string]Keywords for number-context meaning
data.themestring | nullOptional theme label for this meaning
data.opportunitiesarray[string]Opportunity highlights for this meaning
data.challengesarray[string]Challenge highlights for this meaning
data.advicestring | nullOptional advice associated with this meaning

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