Business Name Correction API
The Business Name Correction API analyzes the numerology value of a business name against the owner's full name and date of birth, and reports how strongly the two are aligned, along with suggested spellings that bring the business name into a better vibration. It is ideal for numerology platforms that offer business name correction or name suggestion services.
Overview
This API compares the numerology number of the supplied business_name with the core numbers derived from the owner's full_name and date of birth, then returns an alignment percentage, the target number the business name should vibrate to, and a set of suggested spellings that reach that target. It also returns ready to display text explaining the result to the end user.
API Endpoint
POST https://astroapi-7.divineapi.com/numerology/v1/business-name-correction
Returns the business name alignment analysis in the response, including the current and target business name numbers, an alignment percentage and suggested business name spellings.
Headers
| Name | Type | Description |
|---|---|---|
| Authorization* | String | Your API Access Token (e.g. Bearer {token}) |
Request Body
| Name | Type | Description |
|---|---|---|
| api_key* | String | Your DivineAPI key |
| day* | Integer | Date of birth (e.g. 24) |
| month* | Integer | Month of birth (e.g. 05) |
| year* | Integer | Year of birth (e.g. 2023) |
| full_name* | String | Full name (e.g. Rahul Kumar) |
| business_name* | String | Business name (e.g. abc.com) |
200: OK Fetched Business Name Correction Successfully
{
"status": "success",
"code": 200,
"message": "Request was successful",
"data": {
"business_name_number": 2,
"name_number": 5,
"life_path_number": 6,
"birthday_number": 6,
"business_name_alignment_percentage": 88,
"target_business_name_number": 3,
"is_already_aligned": false,
"suggested_business_names": [
"AABC.COM",
"ABC-A.COM",
"ABC-I.COM"
],
"content": {
"heading": "An Even Better Business Name Is Available",
"description": "Dear Rahul Kumar, your business name resonates with number 2 and already reaches a strong 88% alignment with your personal energy, which is an excellent starting point. Remarkably, an even better number is available, and aligning the business name to number 3 would lift it into the highest band of harmony with your core numbers. A brand name at that level offers the fullest possible support, drawing opportunity and recognition toward the business even more readily than it currently does. This is a genuine upgrade from strong to exceptional, reached through a small spelling change.",
"advice": "For the strongest possible alignment, adopt one of AABC.COM, ABC-A.COM, ABC-I.COM, which tune the business name to number 3 and raise it into the highest harmony band."
}
}
}Example Code Implementations
Below are example implementations in various programming environments.
cURL
curl --location 'https://astroapi-7.divineapi.com/numerology/v1/business-name-correction' \
--header 'Authorization: Bearer {Your Auth Token}' \
--form 'api_key="{Your API Key}"' \
--form 'full_name="Rahul Kumar"' \
--form 'day="24"' \
--form 'month="08"' \
--form 'year="1990"' \
--form 'business_name="abc.com"'