Skip to content

Ancestor Attributes Reading

The Ancestor Attributes Reading (also called Heredity Number) is calculated from the letters in your family name (last name or surname). It reveals karmic patterns, ancestral strengths, inherited talents, and generational destiny passed down through your lineage.

This number shows the spiritual legacy of your family line.

Master Numbers Supported: 11, 22, 33 are preserved with special meanings.


Endpoint

Method Path
GET https://the-numerology-api.p.rapidapi.com/ancestor-reading
POST https://the-numerology-api.p.rapidapi.com/ancestor-reading

Note: POST uses same path as GET — no /post suffix.


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 Description
family_name string Yes Family or last name (e.g., "Brown" or "Martinez").

Only letters — numbers, spaces, and symbols are ignored.
Case-insensitive.


Example Requests

GET Request

curl --request GET \
  --url "https://the-numerology-api.p.rapidapi.com/ancestor-reading?family_name=Brown" \
  --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/ancestor-reading" \
  --header "x-rapidapi-key: YOUR_RAPIDAPI_KEY" \
  --header "x-rapidapi-host: the-numerology-api.p.rapidapi.com" \
  --header "Content-Type: application/json" \
  --data '{
    "family_name": "Martinez"
  }'

Response Example

{
  "family_name": "Brown",
  "ancestral_number": 22,
  "meaning": "Master Builder – Your family line is destined to create lasting institutions, systems, or legacies.",
  "detailed_meaning": "Master number 22 is the most powerful of all numbers. Your ancestral line carries the vibration of the Master Builder — capable of turning grand visions into reality. Past generations may have been architects, leaders, or founders. Your inheritance includes discipline, vision, and the ability to manifest on a large scale. Honor this gift by building something that outlives you.",
  "status": 200
}

Meaning & Interpretation

Ancestral Number 22 – The Master Builder

Family Legacy:
- Visionary leadership
- Building institutions (businesses, charities, systems)
- Discipline + practicality
- Global or generational impact

Inherited Gifts:
- Strategic thinking
- Long-term planning
- Ability to execute big ideas
- Natural authority

Karmic Duty:

"Your bloodline was born to build the future."

Best Expression:
- Entrepreneurship, architecture, philanthropy, governance

Advice:
Your ancestors dreamed big — now it’s your turn. Build something eternal.

Master Number 22: Preserved — highest potential in numerology.


View on RapidAPI


Note

  • Input: family_name only (e.g., "Brown").
  • Letter Mapping:
  • A=1, B=2, ..., I=9
  • J=1, K=2, ..., R=9
  • S=1, T=2, ..., Z=8
  • Calculation: Sum all letters → reduce_number()preserves 11, 22, 33.
  • Example: B(2)+R(9)+O(6)+W(5)+N(5) → 27 → 9
  • Master Numbers: 11, 22, 33 preserved.
  • Validation:
  • Missing family_name400
  • No letters → 422
  • Use Case: Family history, legacy planning, spiritual genealogy.
  • Caching: Not specified — default behavior.