About this endpoint
What it does
Scores the numerology compatibility between two people based on each person’s full name and birth date. The response returns a compatibility summary along with each person’s numerology numbers, strengths, cautions, and an overall score.
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| person_a | Object | Yes | The first person’s details. Contains full_name and birth_date. |
| person_a.full_name | String | Yes | The first person’s full name. |
| person_a.birth_date | String | Yes | The first person’s birth date in date format. |
| person_b | Object | Yes | The second person’s details. Contains full_name and birth_date. |
| person_b.full_name | String | Yes | The second person’s full name. |
| person_b.birth_date | String | Yes | The second person’s birth date in date format. |
Response
Returns a JSON object with summary as a string, cautions and strengths as string arrays, person_a_numbers and person_b_numbers as objects with additional properties, and compatibility_score as an integer from 0 to 100.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| summary | String | No | A textual summary of the compatibility result. |
| cautions | String Array | No | A list of cautionary points. |
| strengths | String Array | No | A list of strengths in the pairing. |
| person_a_numbers | Object | No | Numerology numbers for person A. The object may contain additional properties. |
| person_b_numbers | Object | No | Numerology numbers for person B. The object may contain additional properties. |
| compatibility_score | Integer | No | The compatibility score, ranging from 0 to 100. |