Personal Month¶
Personal Month numerology identifies the vibrational theme of a particular month in your life.
It provides insights into how your energy and focus will manifest and the lessons, opportunities, and challenges to expect.
Your Personal Month complements your Personal Year, giving precise guidance for short-term planning, career, relationships, and spiritual growth.
Endpoint¶
| Method | Path |
|---|---|
GET | https://the-numerology-api.p.rapidapi.com/personal-month |
POST | https://the-numerology-api.p.rapidapi.com/personal-month |
Required Headers¶
x-rapidapi-key: YOUR_RAPIDAPI_KEY
x-rapidapi-host: the-numerology-api.p.rapidapi.com
Content-Type: application/json (POST only)
Get your key from RapidAPI.
Parameters¶
| Param | Type | Required | Default | Description |
|---|---|---|---|---|
dob | string | Yes | — | Date of birth in YYYY-MM-DD format (e.g., "1990-07-17"). |
target_date | string | No | Today | Month to calculate (format YYYY-MM-DD). Defaults to the current month. |
timezone_offset | string | No | "Europe/Paris" | Timezone to use when calculating the target month. Must be a valid timezone name. |
Example Requests¶
GET Request¶
curl --request GET \
--url "https://the-numerology-api.p.rapidapi.com/personal-month?dob=1990-07-17&target_date=2025-08-01" \
--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/personal-month" \
--header "x-rapidapi-key: YOUR_RAPIDAPI_KEY" \
--header "x-rapidapi-host: the-numerology-api.p.rapidapi.com" \
--header "Content-Type: application/json" \
--data '{
"dob": "1990-07-17",
"target_date": "2025-08-01",
"timezone_offset": "Europe/Paris"
}'
Response Example¶
{
"birthdate": "1990-07-17",
"target_date": "2025-08-01",
"timezone": "Europe/Paris",
"personal_month_number": 5,
"meaning": "Expect change — adventure, travel, or breaking routines.",
"detailed_meaning": "A month for change, adventure, and flexibility. Focus on exploring new opportunities and adapting to changes. Challenges may include restlessness or impulsivity. Success comes from curiosity, adaptability, and embracing variety.",
"status": 200
}
Note
- Input must include dob.
- Target month is optional — defaults to the current month.
- Timezone is optional — default is
"Europe/Paris". - Personal Month Number ranges from 1 to 9, reflecting the vibration for the month.
- Helps in short-term planning, career guidance, relationships, and personal growth.