Skip to content

Lucky Days Calendar

The Lucky Days Calendar API provides a detailed personal day-by-day numerology calendar for a chosen period, highlighting your most fortunate days based on your date of birth.
It’s ideal for planning important events, spiritual reflection, and personal productivity.

Discover your lucky days and align your activities with your personal numerology vibration.


Endpoint

Method Path
GET https://the-numerology-api.p.rapidapi.com/lucky-days-calendar
POST https://the-numerology-api.p.rapidapi.com/lucky-days-calendar

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
dob string Yes Date of birth in YYYY-MM-DD format.
start_date string No Calendar start date in YYYY-MM-DD format. Defaults to today if omitted.
weeks int No Number of weeks to generate (max 12). Default is 9.

Example Requests

GET Request

curl --request GET \
  --url "https://the-numerology-api.p.rapidapi.com/lucky-days-calendar?dob=1997-07-17&weeks=9" \
  --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-days-calendar" \
  --header "x-rapidapi-key: YOUR_RAPIDAPI_KEY" \
  --header "x-rapidapi-host: the-numerology-api.p.rapidapi.com" \
  --header "Content-Type: application/json" \
  --data '{
    "dob": "1997-07-17",
    "start_date": "2025-11-17",
    "weeks": 9
  }'

Response Example

{
  "dob": "1997-07-17",
  "start_date": "2025-11-17",
  "weeks": 9,
  "total_days": 63,
  "lucky_days": [
    {
      "date": "2025-11-18",
      "day_of_week": "Tuesday",
      "personal_day_number": 8,
      "meaning": "Ambition, success and material matters."
    },
    {
      "date": "2025-11-20",
      "day_of_week": "Thursday",
      "personal_day_number": 1,
      "meaning": "A day of initiative, confidence and action."
    }
  ],
  "calendar": [
    {
      "date": "2025-11-17",
      "day_of_week": "Monday",
      "personal_day_number": 7,
      "meaning": "Spiritual reflection, inner wisdom and analysis."
    },
    {
      "date": "2025-11-18",
      "day_of_week": "Tuesday",
      "personal_day_number": 8,
      "meaning": "Ambition, success and material matters."
    }
  ],
  "status": 200
}

View on RapidAPI


Note

  • Lucky days are selected based on numerology numbers 1, 3, 5, 6, 8, 11, 22, 33.
  • Maximum range is 12 weeks. Attempts to request more weeks will return an error.
  • Personal Day Number is calculated from your date of birth and the universal date vibration of each day.
  • Use this calendar for planning key activities, personal growth, and spiritual alignment.