The map behind the profile

Your birth chart is the cosmic map of the sky at the exact moment you were born — every planet positioned relative to Earth. It reveals your soul’s path, emotional wiring, relationship blueprint, career karma and spiritual mission. And it can now be generated programmatically with the Numerology API, including a themed SVG visual chart.

What a natal chart contains

In astrology, the natal chart captures the unique positions of the Sun, Moon, Mercury through Pluto, the Rising sign (Ascendant), the 12 houses of life, and the aspects and planetary angles between them. These placements become archetypal energies shaping character, lessons, relationships and cycles. It is more than personality — it is a life map.

Fetch a full birth chart as JSON

The /birth-chart endpoint takes name, birth date and time, coordinates, city, country and timezone:

import requests

url = "https://the-numerology-api.p.rapidapi.com/birth-chart"
querystring = {
    "name": "John Doe", "year": "1990", "month": "7",
    "day": "16", "hour": "12", "minute": "0",
    "lat": "48.8566", "lng": "2.3522",
    "city": "Paris", "country": "FR", "tz": "Europe/Paris"
}
headers = {
    "x-rapidapi-host": "the-numerology-api.p.rapidapi.com",
    "x-rapidapi-key": "YOUR_RAPIDAPI_KEY"
}
response = requests.get(url, headers=headers, params=querystring)
print(response.json())

What the response includes

  • Sun, Moon and Ascendant with signs and degrees
  • Planet placements across signs and houses
  • Major aspects — conjunctions, squares, trines and more
  • Interpretations, e.g. Venus in Cancer: emotionally nurturing in love
  • Nodes, Chiron and other esoteric bodies
  • All chart details in structured JSON

Generate a visual chart as SVG

A companion endpoint renders the natal wheel as a downloadable SVG — zodiac signs, planet symbols, aspect lines, houses and labels — fully themeable (dark/light) and localized through the language parameter. Perfect for apps, spiritual dashboards, PDF reports or print-ready downloads:

url = "https://the-numerology-api.p.rapidapi.com/birth-chart/svg"
querystring = {
    "name": "John Doe", "year": "1990", "month": "7",
    "day": "16", "hour": "12", "minute": "0",
    "lat": "48.8566", "lng": "2.3522", "city": "Paris",
    "country": "FR", "tz": "Europe/Paris",
    "lang": "EN", "theme": "dark"
}

Use cases and product ideas

The pattern powers personal horoscope dashboards, astrology PDFs for coaches and readers, SVG chart generators in astrology apps, "my celestial code" landing pages, soul blueprint onboarding flows for spiritual SaaS and hybrid astrology-plus-numerology profiles that combine /life_path with the birth chart.

A map worth mastering

As above, so below; as within, so without. A birth chart is not fate — it is a starting point: a compass, a mirror, a divine GPS. With a single API call you can decode it, visualize it and help others see themselves more clearly.

Context note

Dakidarts research and interpretive content is published for exploration, education and product discussion. It should not be treated as medical, legal, financial or guaranteed predictive advice.