Planes of Expression¶
Planes of Expression decodes the natural inclinations of your full name into four key planes of consciousness:
| Plane | Life Area |
|---|---|
| Physical | Manifestation, work ethic, action, and tangible results |
| Mental | Reasoning, intellect, problem-solving, and communication |
| Emotional | Sensitivity, empathy, relationships, and emotional intelligence |
| Intuitive | Spiritual awareness, foresight, inner guidance, and insight |
This endpoint helps understand your dominant life expression modes and how to balance them.
Endpoint¶
| Method | Path |
|---|---|
GET | https://the-numerology-api.p.rapidapi.com/planes-of-expression |
POST | https://the-numerology-api.p.rapidapi.com/planes-of-expression |
Required Headers¶
x-rapidapi-key: YOUR_RAPIDAPI_KEY
x-rapidapi-host: the-numerology-api.p.rapidapi.com
Content-Type: application/json (POST only)
Get your key from RapidAPI.
Parameters¶
| Param | Type | Required | Default | Description |
|---|---|---|---|---|
fullname | string | Yes | — | Full name to analyze (e.g., "Jesus Christ"). |
Example Requests¶
GET Request¶
curl --request GET \
--url "https://the-numerology-api.p.rapidapi.com/planes-of-expression?fullname=Jesus%20Christ" \
--header "x-rapidapi-key: YOUR_RAPIDAPI_KEY" \
--header "x-rapidapi-host: the-numerology-api.p.rapidapi.com"
POST Request (JSON Body)¶
curl --request POST \
--url "https://the-numerology-api.p.rapidapi.com/planes-of-expression" \
--header "x-rapidapi-key: YOUR_RAPIDAPI_KEY" \
--header "x-rapidapi-host: the-numerology-api.p.rapidapi.com" \
--header "Content-Type: application/json" \
--data '{
"fullname": "Jesus Christ"
}'
Response Example¶
{
"fullname": "JESUSCHRIST",
"planes_of_expression": [
{
"plane": "Physical",
"count": 7,
"meaning": "Represents your connection with the material and practical world.",
"detailed_meaning": "The Physical Plane reveals your ability to manifest, build, and engage with tangible reality..."
},
{
"plane": "Mental",
"count": 1,
"meaning": "Represents intellect, reasoning, and communication.",
"detailed_meaning": "The Mental Plane reflects your analytical capacity, problem-solving skills, and communication style..."
},
{
"plane": "Emotional",
"count": 2,
"meaning": "Represents your feelings, relationships, and empathy.",
"detailed_meaning": "The Emotional Plane shows how you give and receive love, your sensitivity, and emotional intelligence..."
},
{
"plane": "Intuitive",
"count": 1,
"meaning": "Represents your inner wisdom and spiritual perception.",
"detailed_meaning": "The Intuitive Plane reveals your ability to sense beyond logic, trust your inner voice, and perceive higher truths..."
}
]
}
Note
- Input must include a valid full name.
- Only letters are analyzed; spaces and symbols are ignored.
- Counts reflect dominant expression per plane, helping identify strengths and growth areas.
- Useful for self-awareness, spiritual coaching, and career or personal development.