Signo Zodiacal y Salud
El endpoint "Signo Zodiacal y Salud" devuelve significados estáticos relacionados con la salud y el bienestar, derivados del signo zodiacal.
Este endpoint /horoscope/sign/* devuelve significados descriptivos del signo zodiacal (datos del arquetipo del signo), no informes astrológicos en tiempo real. Para lecturas astrológicas en tiempo real, utilice los endpoints del informe /api/v1/horoscope/reports/*, que están impulsados por nuestro motor de horóscopo de última generación. El motor de código abierto ligero es OpAstro.
Endpoint
| Método | Ruta |
GET | https://api.numerologyapi.com/api/v1/horoscope/sign/health |
POST | https://api.numerologyapi.com/api/v1/horoscope/sign/health |
Parámetros de la Solicitud
GET Query
| Nombre | Requerido | Tipo | Ejemplo | Descripción |
dob | Sí | string | 1992-07-16 | Fecha de nacimiento en formato YYYY-MM-DD. |
Cuerpo de la Solicitud POST
| Nombre | Requerido | Tipo | Ejemplo | Descripción |
dob | Sí | string | 1992-07-16 | Fecha de nacimiento en formato YYYY-MM-DD. |
Parámetro de consulta opcional: lang=en|es|de|fr|pt.
Cuerpo de la Solicitud
| Nombre | Requerido | Tipo | Ejemplo | Descripción |
dob | Sí | string | 1992-07-16 | Fecha de nacimiento en formato YYYY-MM-DD. |
Ejemplos de Solicitudes
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"
}'
Ejemplo de Respuesta
{
"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": ""
}
}
Notas de la Respuesta
- Devuelve
zodiac_sign junto con contenido descriptivo sign_health. - Añade
_enterprise y _api_metadata_. - Este punto final proporciona contenido determinista de significado, no resultados de tránsito basados en ventanas de tiempo.
Puntos Finales Relacionados