Saltar a contenido

Signo Zodiacal y Amor

El endpoint "Zodiac Sign Love" devuelve significados estáticos de relaciones y romance basados en el 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/love
POST https://api.numerologyapi.com/api/v1/horoscope/sign/love

Parámetros de la Solicitud

GET Query

Nombre Requerido Tipo Ejemplo Descripción
dob string 1992-07-16 Fecha de nacimiento en formato YYYY-MM-DD.

Cuerpo de la Solicitud POST

Nombre Requerido Tipo Ejemplo Descripción
dob 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 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/love?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/love?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_love": {
    "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)",
    "sign_motto": "I Feel",
    "core_archetype": "The Nurturer",
    "love_style": "Cancer loves protectively, intuitively, and soul-deep—creating emotional safety, chosen family, and merging hearts completely.",
    "love_overview": "Cancer brings nurturing devotion, memory-keeping romance, and a home-centered bond.",
    "love_summary": "They bond through vulnerability and shared feelings. Their shadow is clinginess, mood-driven withdrawal, or building walls when hurt. Spiritually, Cancer learns that love thrives with healthy boundaries—true merging honors individuality too.",
    "love_strengths": [
      "Deeply empathetic",
      "Fiercely loyal",
      "Nurturing & intuitive",
      "Creates emotional safety",
      "Romantic & sentimental"
    ],
    "love_challenges": [
      "Mood swings",
      "Fear of abandonment",
      "Passive-aggressive when hurt",
      "Overly protective",
      "Holds emotional grudges"
    ],
    "best_love_matches": "Scorpio & Pisces (water soul bonds); Taurus & Virgo (grounded nurturing).",
    "challenging_matches": "Aries & Libra (bluntness & detachment wound deeply).",
    "what_they_seek_in_a_partner": "Emotional availability, gentleness, loyalty, reassurance, family values, and someone who honors their sensitivity.",
    "how_they_express_love": "Cuddles, home dates, remembering tiny details, protective gestures, cooking together, and deep late-night talks.",
    "affirmation": "I love with my whole heart and safe boundaries. My vulnerability is my gift.",
    "spiritual_love_lesson": "Love is a sanctuary, not a fortress—true intimacy flows when both partners feel free within the embrace.",
    "sign_number": 4
  },
  "_enterprise": {
    "client": "The Numerology API",
    "plan": "Enterprise",
    "request_id": "79afc09d49fccda5",
    "quota": "unlimited",
    "usage_tracking": false
  },
  "_api_metadata_": {
    "api_name": "The Numerology API by Dakidarts®",
    "api_version": "1.0.0",
    "endpoint_name": "horoscope_sign_love",
    "endpoint_description": "Provides love and romance characteristics 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.616564+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 el contenido descriptivo zodiac_sign junto con sign_love.
  • 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