Phone Number Analyzer¶
The Phone Number Analyzer reveals the numerological energy of any phone number by: - Calculating overall vibration (sum of all digits → reduced) - Breaking down each digit’s frequency and meaning - Providing percentage influence of each number
Perfect for choosing business lines, personal branding, or understanding digital identity.
Master Numbers: Preserved in overall vibration (11, 22, 33)
All digits 0–9 analyzed
Endpoints¶
| Method | Path |
|---|---|
GET | https://the-numerology-api.p.rapidapi.com/analyze_phone |
POST | https://the-numerology-api.p.rapidapi.com/analyze_phone/post |
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 |
|---|---|---|---|
phone_number | string | Yes | Full phone number (e.g., 12066852344). |
Digits only — non-digits ignored in calculation.
Example Requests¶
GET Request¶
curl --request GET \
--url "https://the-numerology-api.p.rapidapi.com/analyze_phone?phone_number=12066852344" \
--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/analyze_phone/post" \
--header "x-rapidapi-key: YOUR_RAPIDAPI_KEY" \
--header "x-rapidapi-host: the-numerology-api.p.rapidapi.com" \
--header "Content-Type: application/json" \
--data '{
"phone_number": "12066852344"
}'
Response Example¶
{
"phone_number": "12066852344",
"phone_overall_vibration": 5,
"phone_vibration_description": "[ Dynamic - Energetic - Adaptable ]",
"overall_minor_numbers": [
{ "number": 8, "occurrence": 1, "percentage": 9.1, "description": "[ Ambitious - Successful - Materialistic ]" },
{ "number": 3, "occurrence": 1, "percentage": 9.1, "description": "[ Creative - Inspiring - Optimistic ]" },
{ "number": 0, "occurrence": 1, "percentage": 9.1, "description": "[ Neutral 'Buffer' Number - No Attributes ]" },
{ "number": 4, "occurrence": 2, "percentage": 18.2, "description": "[ Reserved - Practical - Grounded ]" },
{ "number": 1, "occurrence": 1, "percentage": 9.1, "description": "[ Strong - Independent - Confident ]" },
{ "number": 2, "occurrence": 2, "percentage": 18.2, "description": "[ Sensitive - Intuitive - Flexible ]" },
{ "number": 5, "occurrence": 1, "percentage": 9.1, "description": "[ Dynamic - Energetic - Adaptable ]" },
{ "number": 6, "occurrence": 2, "percentage": 18.2, "description": "[ Harmonious - Compassionate - Tolerant ]" }
]
}
Calculation Logic¶
12066852344
→ digits: [1,2,0,6,6,8,5,2,3,4,4]
→ sum = 31 → 3+1 = 4 → but wait — 31 → 4? Wait — actual sum:
1+2+0+6+6+8+5+2+3+4+4 = 41 → 4+1 = 5 → overall_vibration = 5
Overall Vibration: Sum all digits → reduce (preserves 11,22,33)
Minor Numbers: Count frequency → % = (count / total_digits) × 100
Digit Meanings¶
| Digit | Description |
|---|---|
| 0 | Neutral buffer — no attributes |
| 1 | Strong, independent, confident |
| 2 | Sensitive, intuitive, flexible |
| 3 | Creative, inspiring, optimistic |
| 4 | Reserved, practical, grounded |
| 5 | Dynamic, energetic, adaptable |
| 6 | Harmonious, compassionate, tolerant |
| 7 | Analytical, spiritual, introspective |
| 8 | Ambitious, successful, materialistic |
| 9 | Humanitarian, wise, completion |
Note
- Input: Full phone number (with or without formatting).
- Processing: Only digits used — letters/symbols ignored.
- Overall Vibration:
reduce_number(sum)→ preserves 11,22,33 - Minor Numbers:
- Sorted by number
- Includes
occurrenceandpercentage 0included as neutral- Caching: 5-minute cache per unique request path.
- Use Case:
- Business line selection
- Personal branding
- Communication energy alignment
- Feng Shui for digital age