Skip to content

Zodiac Sign Health

The Zodiac Sign Health endpoint returns static sign-level wellness and health-theme meanings derived from zodiac sign.

This /horoscope/sign/* endpoint returns descriptive zodiac sign meanings (sign archetype data), not live astrological reports. For live astrological readings, use /api/v1/horoscope/reports/* report endpoints powered by our SOTA horoscope engine. The lightweight open-source engine is OpAstro.

Endpoint

Method Path
GET https://api.numerologyapi.com/api/v1/horoscope/sign/health
POST https://api.numerologyapi.com/api/v1/horoscope/sign/health

Request Parameters

GET Query

Name Required Type Example Description
dob Yes string 1992-07-16 Date of birth in YYYY-MM-DD format.

POST Body

Name Required Type Example Description
dob Yes string 1992-07-16 Date of birth in YYYY-MM-DD format.

Optional query parameter: lang=en|es|de|fr|pt.

Request Body

Name Required Type Example Description
dob Yes string 1992-07-16 Date of birth in YYYY-MM-DD format.

Example Requests

GET

curl --request GET \
  --url "https://api.numerologyapi.com/api/v1/horoscope/sign/health?dob=1992-07-16&lang=en" \
  --header "X-API-Key: YOUR_API_KEY"

POST

curl --request POST \
  --url "https://api.numerologyapi.com/api/v1/horoscope/sign/health?lang=en" \
  --header "X-API-Key: YOUR_API_KEY" \
  --header "Content-Type: application/json" \
  --data '{
  "dob": "1992-07-16"
}'

Example Response

{
  "zodiac_sign": "Cancer",
  "sign_health": {
    "sign_name": "Cancer",
    "sign_symbol": "♋",
    "dates": "June 21 – July 22",
    "element": "Water",
    "modality": "Cardinal",
    "ruling_planet": "Moon",
    "exalted_planet": "Jupiter",
    "detriment_planet": "Mars",
    "fallen_planet": "Saturn",
    "polarity": "Negative (Yin)",
    "body_parts_ruled": "Chest, breasts, stomach, digestive system, womb, lymphatic system",
    "health_overview": "Cancer feels everything in the body—emotions directly influence stomach and chest.",
    "health_summary": "Deeply intuitive about health, strong when emotionally safe. Vulnerabilities include digestive issues, mood-related eating, breast/chest concerns, fluid retention. Their shadow is emotional suppression or over-nurturing others at self-cost. Spiritually, Cancer learns boundaries protect sensitivity—health is inner safety.",
    "health_strengths": [
      "Intuitive self-healing",
      "Nurturing recovery",
      "Strong immunity in safe environments",
      "Emotional body awareness"
    ],
    "health_challenges": [
      "Stress-related digestion",
      "Mood swings affecting appetite",
      "Fluid imbalances",
      "Over-emotional eating",
      "Holding onto hurts physically"
    ],
    "wellness_approach": "Emotional + nurturing self-care—home rituals, gentle movement near water.",
    "recommended_practices": "Moon-cycle tracking, gentle yoga, home-cooked nourishing meals, baths, journaling emotions, swimming.",
    "affirmation": "I honor my feelings and protect my body. My inner safety is my strength.",
    "spiritual_health_lesson": "Nurturing begins within—true wellness flows when boundaries hold space for sensitivity.",
    "sign_number": 4
  },
  "_enterprise": {
    "client": "The Numerology API",
    "plan": "Enterprise",
    "request_id": "3cdedb5923fcc9fb",
    "quota": "unlimited",
    "usage_tracking": false
  },
  "_api_metadata_": {
    "api_name": "The Numerology API by Dakidarts®",
    "api_version": "1.0.0",
    "endpoint_name": "horoscope_sign_health",
    "endpoint_description": "Provides health and wellness traits for a zodiac sign.",
    "developer": "Dakidarts®",
    "copyright": "© 2026 Dakidarts®. All rights reserved.",
    "documentation_url": "https://docs.numerologyapi.com/",
    "response_timestamp": "2026-04-08T13:52:15.587631+01:00",
    "data_source": "Internal Engine / Astro Numerology Interpretation Engine (ANIE)",
    "cacheable_status": true,
    "report_issue": "https://github.com/dakidarts/the-numerology-api/issues",
    "response_language": "en",
    "supported_languages": [
      "en",
      "es",
      "de",
      "fr",
      "pt"
    ],
    "notes": ""
  }
}

Response Notes

  • Returns zodiac_sign plus sign_health descriptive content.
  • Appends _enterprise and _api_metadata_.
  • This endpoint is deterministic sign-meaning content, not time-windowed transit output.