Phone Number Personal Fit
The Phone Number Personal Fit endpoint extends phone-number numerology by comparing a phone vibration directly with the user's name and birth profile. It is part of the v1.0.2 preparation set and uses the expanded 26-locale meaning bundles.
Endpoint
| Method | Path |
GET | https://api.numerologyapi.com/api/v1/phone-number-personal-fit |
POST | https://api.numerologyapi.com/api/v1/phone-number-personal-fit |
Availability
- Authentication:
X-API-Key or Authorization: Bearer YOUR_API_KEY - Supported
lang values: en, fr, es, de, pt, ja, hi, ar, ru, tr, it, pl, nl, id, ko, th, ro, ur, gu, bn, vi, ta, te, mr, pa, zh - Access channel: direct API (
https://api.numerologyapi.com) - RapidAPI gateway: Not currently supported for extended endpoints
- Optional numerology systems:
pythagorean, chaldean, vedic (pythagorean is the default) - Release target: v1.0.2. The already-released v1.0.1 docs remain accurate at 8-language support.
Parameters
GET Query Parameters
| Parameter | Type | Required | Default | Options | Description |
full_name | string | Yes | — | length 1..160 | Person name |
dob | string | Yes | — | YYYY-MM-DD | Date of birth |
phone_number | string | Yes | — | length 1..40 | Phone number or dial string |
usage | string | No | personal | personal, business, creative, spiritual, emergency | Primary use case |
num_sys | string | No | pythagorean | pythagorean, chaldean, vedic | Numerology system |
lang | string | No | en | 26 supported locales | Response language |
POST Query Parameters
| Parameter | Type | Required | Default | Options | Description |
lang | string | No | en | 26 supported locales | Response language |
POST Body Parameters
| Parameter | Type | Required | Default | Options | Description |
full_name | string | Yes | — | length 1..160 | Person name |
dob | string | Yes | — | YYYY-MM-DD | Date of birth |
phone_number | string | Yes | — | length 1..40 | Phone number or dial string |
usage | string | No | personal | personal, business, creative, spiritual, emergency | Primary use case |
num_sys | string | No | pythagorean | pythagorean, chaldean, vedic | Numerology system |
Request Examples
GET
curl -H "X-API-Key: YOUR_API_KEY" \
"https://api.numerologyapi.com/api/v1/phone-number-personal-fit?full_name=Priya%20Shah&dob=1993-08-21&phone_number=%2B44%207700%20900123&usage=business&num_sys=pythagorean&lang=en"
POST
curl -X POST "https://api.numerologyapi.com/api/v1/phone-number-personal-fit?lang=en" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"full_name": "Priya Shah",
"dob": "1993-08-21",
"phone_number": "+44 7700 900123",
"usage": "business",
"num_sys": "pythagorean"
}'
POST Body Example
{
"full_name": "Priya Shah",
"dob": "1993-08-21",
"phone_number": "+44 7700 900123",
"usage": "business",
"num_sys": "pythagorean"
}
Response Highlights
phone_vibration_number personal_fit_composite_number fit_scores fit_band meaning detailed_meaning
Response Example Shape
{
"numerology_system": "pythagorean",
"meaning": { "title": "...", "overview": "..." },
"detailed_meaning": "...",
"_api_metadata_": {
"endpoint_name": "phone_number_personal_fit",
"response_language": "en",
"supported_languages": ["en", "fr", "es", "de", "pt", "ja", "hi", "ar", "ru", "tr", "it", "pl", "nl", "id", "ko", "th", "ro", "ur", "gu", "bn", "vi", "ta", "te", "mr", "pa", "zh"]
}
}
Open Dashboard
Note
This endpoint belongs to the Extended suite and is available through direct API access at https://api.numerologyapi.com. It is currently not supported via the RapidAPI gateway.