Pet Name Harmony
The Pet Name Harmony endpoint reads a pet name, pet date, and household members to create a symbolic companion and household-fit report. 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/pet-name-harmony |
POST | https://api.numerologyapi.com/api/v1/pet-name-harmony |
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 |
pet_name | string | Yes | — | length 1..80 | Pet name |
pet_type | string | No | dog | dog, cat, bird, rabbit, horse, reptile, small_mammal | Pet type |
pet_birth_or_adoption_date | string | No | null | YYYY-MM-DD | Birth or adoption date |
household_member_names | array[string] | Yes | — | repeat query param | Household member names |
household_member_dobs | array[string] | Yes | — | repeat query param | Household member birth dates |
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 |
pet_name | string | Yes | — | length 1..80 | Pet name |
pet_type | string | No | dog | dog, cat, bird, rabbit, horse, reptile, small_mammal | Pet type |
pet_birth_or_adoption_date | string | No | null | YYYY-MM-DD | Birth or adoption date |
household_member_names | array | Yes | — | repeat query param | Household member names |
household_member_dobs | array | Yes | — | repeat query param | Household member birth dates |
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/pet-name-harmony?pet_name=Milo&pet_type=dog&pet_birth_or_adoption_date=2025-04-09&household_member_names=Leila%20Grant&household_member_dobs=1991-10-02&num_sys=pythagorean&lang=en"
POST
curl -X POST "https://api.numerologyapi.com/api/v1/pet-name-harmony?lang=en" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"pet_name": "Milo",
"pet_type": "dog",
"pet_birth_or_adoption_date": "2025-04-09",
"household_members": [
{
"name": "Leila Grant",
"dob": "1991-10-02"
},
{
"name": "Noah Grant",
"dob": "2017-06-11"
}
],
"num_sys": "pythagorean"
}'
POST Body Example
{
"pet_name": "Milo",
"pet_type": "dog",
"pet_birth_or_adoption_date": "2025-04-09",
"household_members": [
{
"name": "Leila Grant",
"dob": "1991-10-02"
},
{
"name": "Noah Grant",
"dob": "2017-06-11"
}
],
"num_sys": "pythagorean"
}
Response Highlights
pet_name_number companion_archetype_number household_composite_number household_members pet_scores disclaimer meaning
Response Example Shape
{
"numerology_system": "pythagorean",
"meaning": { "title": "...", "overview": "..." },
"detailed_meaning": "...",
"_api_metadata_": {
"endpoint_name": "pet_name_harmony",
"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.