Destiny Number / Soul Expression¶
The Destiny Number (also called Expression Number) is derived from the numerical value of your full birth name (as written on your birth certificate). It reveals your natural talents, abilities, and potential — the "destiny" you're meant to fulfill.
This endpoint uses the Pythagorean letter-to-number mapping (A=1, B=2, ..., Z=26) to compute the Destiny Number and returns a comprehensive interpretation.
Master Numbers: 11, 22, 33 are not reduced — returned with enhanced meaning.
Endpoint¶
| Method | Path |
|---|---|
GET | https://api.numerologyapi.com/api/v1/destiny_number |
POST | https://api.numerologyapi.com/api/v1/destiny_number/post |
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 |
|---|---|---|---|
first_name | string | Yes | First name (e.g., "John"). Case-insensitive. |
middle_name | string | No | Middle name(s). Include all if any. |
last_name | string | Yes | Last name (e.g., "Doe"). |
Name Rules:
- Use birth certificate spelling (not nicknames).
- Accents & special characters are normalized (é → e, ñ → n).
- Spaces and hyphens are ignored in calculation.
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/destiny_number?first_name=John&middle_name=Alan&last_name=Doe&lang=en" \
--header "X-API-Key: YOUR_API_KEY"
POST Request (JSON Body)¶
curl --request POST \
--url "https://api.numerologyapi.com/api/v1/destiny_number/post?lang=en" \
--header "X-API-Key: YOUR_API_KEY" \
--header "Content-Type: application/json" \
--data '{
"first_name": "John",
"middle_name": "Alan",
"last_name": "Doe"
}'
Response Example¶
{
"destiny_number": 9,
"summary": {
"title": "Destiny Number 9: The Humanitarian and Universal Teacher",
"overview": "Destiny Number 9 carries the vibration of completion, compassion, and universal love. These souls are the old souls and global healers, gifted with profound empathy, artistic talent, and the ability to see the bigger picture. Their life purpose involves serving humanity and teaching unconditional love.",
"strengths": [
"Deep compassion and humanitarian vision",
"Artistic and creative gifts with universal appeal",
"Ability to forgive and heal on large scale",
"Natural wisdom and spiritual insight"
],
"challenges": [
"Difficulty letting go and completing cycles",
"Tendency toward emotional overwhelm",
"Martyrdom and over-identification with suffering",
"Scattered energy across too many causes"
],
"life_lesson": "The deepest growth for Destiny 9 comes from learning to serve without self-sacrifice. When compassion includes self-love, their healing becomes infinite.",
"ideal_career_paths": [
"International humanitarian work",
"Art, music, and film with social message",
"Teaching, counseling, and spiritual guidance",
"Non-profit leadership and philanthropy"
],
"spiritual_growth_tip": "Practice daily self-compassion rituals. When you love yourself as much as humanity, your service becomes truly transformative."
},
"detailed_meaning": "Destiny Number 9 embodies compassion, humanitarianism, universal love, and the completion of cycles. Individuals with Destiny 9 are meant to serve humanity, offering their gifts to create a more just and loving world. They thrive in service, creative expression, and social causes that uplift the collective and heal global wounds. Your destiny calls you to love unconditionally, forgive freely, and work toward the betterment of all humanity. You're here to demonstrate selfless service, artistic expression with meaning, and the transformative power of letting go. Success comes when you embrace your role as a world server without losing yourself in others' pain and struggles. Your life's purpose flourishes in nonprofits, healing arts, teaching, activism, humanitarian work, or creative fields addressing social issues. Challenges include emotional overwhelm, detachment as protection, difficulty with endings, and personal loss through service; embracing healthy closure, practicing radical forgiveness, honoring personal boundaries alongside universal love, and releasing what no longer serves strengthens your path and magnifies your transformative impact on the world.",
"_enterprise": {
"client": "The Numerology API",
"plan": "Enterprise",
"request_id": "5f74ee78cac2edb9",
"quota": "unlimited",
"usage_tracking": true
},
"_api_metadata_": {
"api_name": "The Numerology API by Dakidarts®",
"api_version": "0.1.1",
"endpoint_name": "destiny_number",
"endpoint_description": "Computes the Destiny (Expression) number from full name, showing life goals and talents.",
"developer": "Dakidarts®",
"copyright": "© 2026 Dakidarts®. All rights reserved.",
"documentation_url": "https://docs.numerologyapi.com/",
"response_timestamp": "2026-02-28T07:36:27.969870+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": ""
}
}
Meaning & Interpretation¶
Destiny 7 – The Seeker & Analyst¶
Core Traits:
- Analytical, introspective, wise
- Natural researcher, philosopher, or scientist
- Deeply intuitive and spiritual
- Independent, private, perfectionist
Best Careers:
- Researcher, analyst, professor, writer, detective, spiritual teacher, programmer
Challenges:
- Tendency to withdraw or isolate
- Overthinking or skepticism
- Difficulty expressing emotions
Advice:
Trust your inner wisdom. Share your insights with the world. Your gift is seeing what others miss — use it to guide and heal.
Master Number Note: A Destiny of 11 indicates heightened intuition and inspiration; 22 suggests master builder potential; 33 is the rare "Master Teacher."
Note
- Pythagorean Mapping: A=1, B=2, ..., I=9, J=1, etc. Full name summed and reduced.
- Master Numbers: 11/22/33 preserved with special interpretation.
- Name Variations: Use legal birth name. Nicknames give different (unofficial) results.
- Validation: Empty or invalid names return
400 Bad Request. - Rate Limits: Free = 100 req/mo → Upgrade here.
- Caching: Identical name inputs cached for 30 days.