Lucky Numbers¶
The Lucky Numbers API provides a full numerology profile including key personal numbers derived from your birthdate and full name.
This helps you understand your strengths, opportunities, and spiritual alignment, and plan for success.
Unlock your personal numerology blueprint with a simple API call.
Endpoint¶
| Method | Path |
|---|---|
GET | https://the-numerology-api.p.rapidapi.com/lucky_numbers |
POST | https://the-numerology-api.p.rapidapi.com/lucky_numbers/post |
Required Headers¶
x-rapidapi-key: YOUR_RAPIDAPI_KEY
x-rapidapi-host: the-numerology-api.p.rapidapi.com
Content-Type: application/json (POST only)
Parameters¶
| Param | Type | Required | Description |
|---|---|---|---|
birthdate | string | Yes | Your birthdate in YYYY-MM-DD format. |
full_name | string | No | Your full name. Some numbers are derived from letters in your name. |
Example Requests¶
GET Request¶
curl --request GET \
--url "https://the-numerology-api.p.rapidapi.com/lucky_numbers?birthdate=1997-07-17&full_name=Anselm%20Etuge" \
--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/lucky_numbers/post" \
--header "x-rapidapi-key: YOUR_RAPIDAPI_KEY" \
--header "x-rapidapi-host: the-numerology-api.p.rapidapi.com" \
--header "Content-Type: application/json" \
--data '{
"birthdate": "1997-07-17",
"full_name": "Anselm Etuge"
}'
Response Example¶
{
"lucky_numbers": {
"destiny_number": 5,
"inner_dream_number": 4,
"life_path_number": 3,
"lucky_number": 3,
"personal_day": 7,
"personal_month": 3,
"personal_year": 2,
"soul_number": 6,
"soul_urge_number": 1
}
}
Note
- Destiny Number: Your overall life purpose and direction.
- Life Path Number: Reveals the primary lessons and growth opportunities in your life.
- Soul Number / Soul Urge Number: Reflects your inner desires, motivations, and emotional needs.
- Lucky Number: Your general number for prosperity and success.
- Personal Day / Month / Year: Numerology numbers for daily, monthly, and yearly guidance.
- Inner Dream Number: Highlights your subconscious goals and ideal achievements.
Related Endpoints¶
- Personal Day Number – Get your daily personal numerology number.
- Lucky Days Calendar – Weekly lucky days with detailed meanings.
- Life Period Cycles – Track your three major life periods.