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://api.numerologyapi.com/api/v1/mirror-numbers |
POST | https://api.numerologyapi.com/api/v1/mirror-numbers |
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 |
|---|---|---|---|
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. |
Add the optional
langquery parameter to localize responses. Supported values:en,es,de,fr,pt.
Example Requests¶
GET – Full Mirror Grid¶
curl --request GET \
--url "https://api.numerologyapi.com/api/v1/mirror-numbers?base=1&expanded=False&lang=en" \
--header "X-API-Key: YOUR_API_KEY"
POST – Single Number (Expanded)¶
curl --request POST \
--url "https://api.numerologyapi.com/api/v1/mirror-numbers?lang=en" \
--header "X-API-Key: YOUR_API_KEY" \
--header "Content-Type: application/json" \
--data '{
"base": 1,
"expanded": false
}'
Response Example¶
Full Grid (Default)¶
{
"base": 1,
"reduced_base": 1,
"is_master_number": "no",
"mirror": 3,
"keyword": "Unity",
"meaning": "Unity mirrors itself into the Trinity, first expression of consciousness. It represents the pure source initiating creation through self-reflection.",
"_enterprise": {
"client": "The Numerology API",
"plan": "Enterprise",
"request_id": "2cd5a3e185b40249",
"quota": "unlimited",
"usage_tracking": true
},
"_api_metadata_": {
"api_name": "The Numerology API by Dakidarts®",
"api_version": "0.1.1",
"endpoint_name": "mirror_numbers",
"endpoint_description": "Identifies Mirror numbers in your chart and their reflective significance.",
"developer": "Dakidarts®",
"copyright": "© 2026 Dakidarts®. All rights reserved.",
"documentation_url": "https://docs.numerologyapi.com/",
"response_timestamp": "2026-02-28T07:36:37.259317+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¶
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 + 1orn + 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
Note
- Master Numbers (11, 22, 33) are preserved and flagged in results.
- If
baseis omitted, all 12 vibrational archetypes are returned. - Invalid
basevalues trigger400 Bad Request. - Free tier: 100 req/mo — see Pricing.
- All responses are cached for 24 hours (CDN-level).