get
/api/v1/horoscope/monthly
Get monthly horoscope
Overview
Returns a monthly horoscope for the specified zodiac sign, including weekly breakdown, key dates, and moon phases.
Parameters
| Name | Type | In | Required | Description |
|---|---|---|---|---|
sign | string | query | Yes | Zodiac sign Allowed: AriesTaurusGeminiCancerLeoVirgoLibraScorpioSagittariusCapricornAquariusPisces |
year | string | query | Yes | Year |
month | string | query | Yes | Month (1-12) |
perspective | string | query | No | Astrological perspective (sun, moon, or rising) Allowed: sunmoonrising |
Response
200 — Monthly horoscope
signstring required- Enum:
AriesTaurusGeminiCancerLeoVirgoLibraScorpioSagittariusCapricornAquariusPisces yearnumber required- Year
monthnumber required- Month (1-12)
signContextobject requiredelementstring required- Enum:
FireEarthAirWater modalitystring required- Enum:
CardinalFixedMutable keywordsarray requiredarray of string
weeklyBreakdownarray required- Weekly breakdown of the month
Weekly breakdown of the month
array of object
weekNumbernumber required- Week number within the month (1-4)
startDatestring required- Start date of the week
endDatestring required- End date of the week
ingressesarray required- Planet ingresses during this week
Planet ingresses during this week
array of object
planetstring required- Enum:
SunMoonMercuryVenusMarsJupiterSaturnUranusNeptunePlutoChironNorthNodeSouthNodeNorthNodeMeanSouthNodeMeanCeresJunoVestaPallasLilithMeanLilithTrueErisSednaMakemakeHaumeaQuaoarIxionVarunaHygieaAstraeaPsycheErosSapphoAmorCupidoHadesZeusKronosApollonAdmetosVulkanusPoseidonVertexAntiVertex signstring required- Enum:
AriesTaurusGeminiCancerLeoVirgoLibraScorpioSagittariusCapricornAquariusPisces datestring required
keyDatesarray required- Key dates during the month
Key dates during the month
array of object
datestring required- ISO date of the key event
eventstring required- Name of the event
eventTypestring required- Type of event
- Enum:
moonPhaseingress planetstring- Planet involved (for ingress events)
- Enum:
SunMoonMercuryVenusMarsJupiterSaturnUranusNeptunePlutoChironNorthNodeSouthNodeNorthNodeMeanSouthNodeMeanCeresJunoVestaPallasLilithMeanLilithTrueErisSednaMakemakeHaumeaQuaoarIxionVarunaHygieaAstraeaPsycheErosSapphoAmorCupidoHadesZeusKronosApollonAdmetosVulkanusPoseidonVertexAntiVertex signstring- Sign involved (for ingress events)
- Enum:
AriesTaurusGeminiCancerLeoVirgoLibraScorpioSagittariusCapricornAquariusPisces
moonPhasesarray required- Moon phases during the month
Moon phases during the month
array of object
phasestring required- Moon phase name
datestring required- ISO date of the moon phase
Example Request
cURL
curl "https://api.almuten.io/api/v1/horoscope/monthly" \
-H "Authorization: Bearer YOUR_API_KEY"Example Response
JSON
{
"sign": "Aries",
"year": 2026,
"month": 3,
"signContext": {
"element": "Fire",
"modality": "Cardinal",
"keywords": [
""
]
},
"weeklyBreakdown": [
{
"weekNumber": 1,
"startDate": "2026-03-01",
"endDate": "2026-03-07",
"ingresses": [
{
"planet": null,
"sign": null,
"date": null
}
]
}
],
"keyDates": [
{
"date": "2026-03-14",
"event": "Full Moon",
"eventType": "moonPhase",
"planet": "Sun",
"sign": "Aries"
}
],
"moonPhases": [
{
"phase": "New Moon",
"date": "2026-03-01"
}
]
}