Skip to content

Mirror Numbers Grid

The Mirror Numbers Grid is a metaphysical map that shows how every vibration (1–9, and the Master Numbers 11, 22, 33) reflects into its mirror counterpart according to the sacred law of 2n + 1 (or n + 1 + n).

It is the foundation of the Mirror Path system, revealing how numbers energetically balance each other in cycles of reflection, completion, and renewal. Each number mirrors into another — forming a cosmic dialogue between creation and return.

“Every number is a portal of consciousness reflecting its twin in the infinite spiral of being.” — Etuge Anselm E.


Endpoint

Method Path
GET https://the-numerology-api.p.rapidapi.com/mirror-numbers
POST https://the-numerology-api.p.rapidapi.com/mirror-numbers

Required Headers

x-rapidapi-key: YOUR_RAPIDAPI_KEY
x-rapidapi-host: the-numerology-api.p.rapidapi.com
Content-Type: application/json   (POST only)

Replace YOUR_RAPIDAPI_KEY with your key from RapidAPI.


Parameters

Param Type Required Description
base integer No The number to analyze (1–9, 11, 22, 33, or any reducible number). If omitted, returns the full grid.
expanded boolean No When true, adds detailed meanings, mirror cycles, and keyword chains. Default: false.

Example Requests

GET – Full Mirror Grid

curl --request GET \
  --url "https://the-numerology-api.p.rapidapi.com/mirror-numbers" \
  --header "x-rapidapi-key: YOUR_RAPIDAPI_KEY" \
  --header "x-rapidapi-host: the-numerology-api.p.rapidapi.com"

POST – Single Number (Expanded)

curl --request POST \
  --url "https://the-numerology-api.p.rapidapi.com/mirror-numbers" \
  --header "x-rapidapi-key: YOUR_RAPIDAPI_KEY" \
  --header "x-rapidapi-host: the-numerology-api.p.rapidapi.com" \
  --header "Content-Type: application/json" \
  --data '{
    "base": 3,
    "expanded": true
  }'

View on RapidAPI


Response Example

Full Grid (Default)

{
  "mirror_grid": [
    {
      "base": 1,
      "is_master_number": "no",
      "keyword": "Unity",
      "meaning": "Unity mirrors itself into the Trinity, first expression of consciousness.",
      "mirror": 3,
      "reduced_base": 1
    },
    {
      "base": 2,
      "is_master_number": "no",
      "keyword": "Duality",
      "meaning": "Duality mirrors into 5, the human number of senses and experience.",
      "mirror": 5,
      "reduced_base": 2
    },
    {
      "base": 3,
      "is_master_number": "no",
      "keyword": "Trinity",
      "meaning": "The Trinity mirrors into 7, divine mysticism and perfection.",
      "mirror": 7,
      "reduced_base": 3
    },
    {
      "base": 4,
      "is_master_number": "no",
      "keyword": "Foundation",
      "meaning": "Foundation mirrors into 9, the womb and completion.",
      "mirror": 9,
      "reduced_base": 4
    }
    ...
  ]
}

Meaning & Interpretation

Each number holds a vibrational archetype that finds balance through its mirror counterpart:

Base Keyword Mirrors Into Mirror Keyword Essence
1 Unity 3 Trinity Birth and first expression of consciousness
2 Duality 5 Humanity Reflection through sensory experience
3 Trinity 7 Mysticism Creativity meets divine insight
4 Foundation 9 Completion Structure meets culmination
5 Humanity 2 Duality Experience returns to reflection
6 Love 4 Foundation Love grounded into matter
7 Mysticism 6 Love Spirit grounded in compassion
8 Infinity 8 Infinity Eternal karmic loop
9 Completion 1 Unity End becomes beginning
11 Illumination 5 Humanity Light incarnates into human form
22 Master Builder 9 Completion Blueprint realized in service
33 Master Teacher 4 Foundation Divine love builds creation

Formula Note: Every mirror relationship arises from 2n + 1 or n + 1 + n, a sacred mathematical echo of creation and reflection.


Expanded Mode (expanded=true)

When enabled, each entry also includes:

  • detailed_meaning – deeper metaphysical insight
  • cycle – ordered list of number reflections
  • cycle_keywords – symbolic chain of meanings

Example for base = 3:

{
  "base": 3,
  "reduced_base": 3,
  "is_master_number": "no",
  "mirror": 7,
  "keyword": "Trinity",
  "meaning": "The Trinity mirrors into 7, divine mysticism and perfection.",
  "detailed_meaning": "The Trinity elevated through the seed of creation becomes 7, representing spiritual knowledge, mystical insight, and perfection.",
  "cycle": [3, 7, 6, 4, 9, 1],
  "cycle_keywords": ["Trinity", "Mysticism", "Love", "Foundation", "Completion", "Unity"]
}

Applications

  • Visualize mirror pairs and karmic reflections
  • Study numerological balance patterns
  • Explore higher-dimensional cycles (the “mirror spiral”)
  • Integrate with Life Path and Mirror Path for complete decoding

View on RapidAPI


Note

  • Master Numbers (11, 22, 33) are preserved and flagged in results.
  • If base is omitted, all 12 vibrational archetypes are returned.
  • Invalid base values trigger 400 Bad Request.
  • Free tier: 100 req/mo — see Pricing.
  • All responses are cached for 24 hours (CDN-level).