Email Numerology¶
The Email Numerology endpoint analyzes your email address (letters + numbers) to reveal: - Your digital identity - Online communication style - Virtual destiny & branding energy
It strips all special characters (@, ., -, _), converts letters/numbers to values, and reduces to a core number (1–9, 11, 22, 33).
Master Numbers Preserved: 11, 22, 33
Includes digits 0–9 as their face value
Endpoint¶
| Method | Path |
|---|---|
GET | https://api.numerologyapi.com/api/v1/email-numerology |
POST | https://api.numerologyapi.com/api/v1/email-numerology |
Note: POST uses same path as GET — no
/postsuffix.
Required Headers¶
You can also authenticate with
Authorization: Bearer YOUR_API_KEY.Create and manage API keys in the Numerology API dashboard.
Parameters¶
| Param | Type | Required | Description |
|---|---|---|---|
email | string | Yes | Any valid email (e.g., hi@numerologyapi.com). |
Only letters & digits used —
@,.,-,_are ignored.
Add the optional
langquery parameter to localize responses. Supported values:en,es,de,fr,pt.
Example Requests¶
GET Request¶
curl --request GET \
--url "https://api.numerologyapi.com/api/v1/email-numerology?email=langtest%40example.com&lang=en" \
--header "X-API-Key: YOUR_API_KEY"
POST Request (JSON Body)¶
curl --request POST \
--url "https://api.numerologyapi.com/api/v1/email-numerology?lang=en" \
--header "X-API-Key: YOUR_API_KEY" \
--header "Content-Type: application/json" \
--data '{
"email": "langtest@example.com"
}'
Response Example¶
{
"email": "langtest@example.com",
"email_number": 7,
"meaning": {
"title": "Email Number 7: The Digital Mystic & Deep Thinker",
"overview": "Email Number 7 radiates mystery, depth, and spiritual wisdom in the digital world. Your online presence feels thoughtful, introspective, and profound — people see you as the one who shares deeper truths, esoteric knowledge, and quiet insight. This vibration excels at spiritual content, research-based posts, and soul-level connection.",
"core_digital_energy": "Introspective • Intuitive • Spiritual • Wise • Mysterious",
"how_you_are_perceived_online": [
"Deep, insightful, and spiritually attuned",
"The one who shares meaningful, thoughtful content",
"Quiet strength and authentic depth",
"People feel you see beyond the surface"
],
"opportunities_this_vibration_brings": [
"Create profound spiritual or philosophical content",
"Build an audience that seeks depth and truth",
"Share intuitive insights and higher knowledge",
"Attract soul-aligned connections"
],
"challenges_to_master": [
"Avoiding emotional distance or isolation online",
"Balancing depth with accessibility",
"Protecting energy from digital noise",
"Sharing wisdom without overwhelming others"
],
"spiritual_growth_tip": "Ground your digital mysticism with daily practice. When you share inner wisdom with humility and love, your online presence becomes a lighthouse of truth.",
"affirmation": "I share digital wisdom with grace and depth. My presence brings light and understanding."
},
"detailed_meaning": "Your Email Number 7 carries the energy of a digital mystic—your online presence leans toward depth, research, and quiet inquiry rather than loud self-promotion or surface-level engagement. You communicate selectively, preferring long-form writing, insightful comments, or private messages over public performance; your words carry weight because they’re rare and well-considered. You’re drawn to forums on philosophy, science, spirituality, or data analysis—spaces where truth matters more than trends, and silence is respected as part of the conversation. This energy makes you a trusted source in niche communities; people may not always understand your perspective, but they sense its integrity and return for your clarity. The shadow side includes withdrawing so completely that you miss opportunities to share your wisdom, or over-analyzing digital interactions until connection feels impossible. To harmonize this frequency, share one insight weekly—even anonymously—in a space that needs it; your truth, however quiet, can shift someone’s entire trajectory. You’re less active on social media, but when you post, it’s often bookmarked, quoted, or saved for later—a testament to your depth. When integrated fully, your Email 7 becomes a wellspring of digital wisdom—proving that in an age of noise, the most powerful signal is the one that speaks from stillness.",
"_enterprise": {
"client": "The Numerology API",
"plan": "Enterprise",
"request_id": "cae5ade347d18974",
"quota": "unlimited",
"usage_tracking": true
},
"_api_metadata_": {
"api_name": "The Numerology API by Dakidarts®",
"api_version": "0.1.1",
"endpoint_name": "email_numerology",
"endpoint_description": "Performs numerological analysis of email addresses.",
"developer": "Dakidarts®",
"copyright": "© 2026 Dakidarts®. All rights reserved.",
"documentation_url": "https://docs.numerologyapi.com/",
"response_timestamp": "2026-02-28T07:36:28.389886+01:00",
"data_source": "Internal Engine / Astro Numerology Interpretation Engine (ANIE)",
"cacheable_status": true,
"report_issue": "https://github.com/dakidarts/the-numerology-api/issues",
"response_language": "en",
"supported_languages": [
"en",
"es",
"de",
"fr",
"pt"
],
"notes": ""
}
}
Calculation Logic¶
hi@numerologyapi.com
→ clean: HINUMEROLOGYAPI
→ values: H=8, I=9, N=5, U=3, M=4, E=5, R=9, O=6, L=3, O=6, G=7, Y=7, A=1, P=7, I=9
→ sum = 83 → 8+3 = 11 → 1+1 = 2 → but wait — reduce_number() preserves masters?
→ In your code: reduce_number() → preserves 11,22,33 → but 83 → 11 → 2 → so final = 2
Note: Final reduction preserves master numbers only if sum is 11, 22, or 33 before final step.
Email Number Meanings¶
| Number | Online Energy | Best For |
|---|---|---|
| 1 | Leader | Personal brands, startups |
| 2 | Diplomat | Customer support, partnerships |
| 3 | Creator | Content, art, social media |
| 4 | Builder | Tech, engineering, systems |
| 5 | Influencer | Marketing, travel, media |
| 6 | Nurturer | Wellness, family, coaching |
| 7 | Analyst | Research, tech, spirituality |
| 8 | CEO | Business, finance, authority |
| 9 | Humanitarian | NGOs, activism, global reach |
| 11 | Visionary | Innovation, inspiration |
| 22 | Master Builder | Scalable platforms, legacy |
| 33 | Master Teacher | Education, healing, upliftment |
Note
- Input: Full email address.
- Cleaning:
re.sub(r'[^A-Za-z0-9]', '', email).upper() - Letter Map:
- A=1, B=2, ..., I=9
- J=1, K=2, ..., Z=8
- 0=0, 1=1, ..., 9=9
- Reduction:
reduce_number(total)→ preserves 11, 22, 33 - Validation:
- Missing
email→400 - No letters/digits →
422 - Use Case:
- Choosing professional email
- Branding alignment
- Digital marketing strategy
- Personalized email insights