Skip to main content

Single dream symbol lookup

Lookup a specific dream symbol by slug or name (case-insensitive). Examples: 'snake', 'eagle', 'childhood-home', 'teeth falling out'. Returns full dual-tradition interpretation including Jungian archetype, Vedic dream tradition meaning, context variants, and related symbols.

Endpoint

GET /v1/dreams/symbol/{name}

Request parameters

FieldTypeRequiredDescription
namestringYes

Example request

curl -X GET "https://api.asterwise.com/v1/dreams/symbol/snake" \
-H "Authorization: Bearer YOUR_API_KEY"

Example response

{
"success": true,
"message": "success",
"data": {
"slug": "snake",
"name": "Snake",
"category": "animals",
"jungian_meaning": "Instinctual energy, transformation, and healing. Often signals a profound psychological shift or the unconscious threate…",
"jungian_archetype": "Shadow",
"vedic_meaning": "Shubha (auspicious) if climbing or biting the dreamer — indicates wealth or Kundalini awakening. Ashubha if black and ch…",
"vedic_auspicious": null,
"traditions_agree": "partial",
"emotional_tone": "transformation",
"themes": [
"transformation",
"hidden danger",
"... and 3 more items"
],
"context_variants": [
{
"context": "white snake",
"meaning": "Immense spiritual wealth and divine grace"
},
{
"context": "snake biting you",
"meaning": "Sudden financial gain or Kundalini awakening"
},
"... and 1 more item"
],
"related_symbols": [
"hotel",
"justice-abstract",
"... and 2 more items"
]
}
}

Response fields

FieldTypeDescription
successbooleanTrue if the request succeeded
messagestringHuman-readable status message
dataobject
data.slugstringURL-safe identifier.
data.namestringDisplay name of the symbol.
data.categorystringSymbol category: animals, nature, people, places, objects, actions, body, or abstract.
data.jungian_meaningstringJungian/Western psychological interpretation.
data.jungian_archetypestringPrimary Jungian archetype activated by this symbol.
data.vedic_meaningstringClassical Vedic dream tradition interpretation.
data.vedic_auspiciousboolean | nullTrue if auspicious (Shubha), False if inauspicious (Ashubha), null if mixed/context-dependent.
data.traditions_agreestringWhether Jungian and Vedic traditions agree: 'agree', 'conflict', or 'partial'.
data.emotional_tonestringPrimary emotional register: anxiety, transformation, auspicious, warning, grief, power, healing, clarity, confusion, or neutral.
data.themesarray[string]Thematic keywords used for AI synthesis and search.
data.context_variantsarray[object]Alternative readings depending on dream context.
data.context_variants[].contextstringThe specific dream context or variant.
data.context_variants[].meaningstringThe interpretation for this specific context.
data.related_symbolsarray[string]Slugs of related dream symbols.

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