Skip to main content
PRO TIER

Personal Chart Engine

Personal charts via API — for every client.

What you see here is a real calculated profile. Four systems. One person. This is what your app gets for every user.

!

The Problem

You are a coach, HD reader, or building a platform. For every birth chart you open Solar Fire. For Human Design you need jovianarchive.com. For Numerology you calculate by hand. Every client = 30 minutes of manual work before the actual coaching begins.

AE

Albert Einstein

1879-03-14 at 11:30 — Ulm, Germany

Sample person

Birth Chart

POST /api/v1/astrology/calculate/{uuid}

Sun

Pisces

23.27° — House 10

Moon

Sagittarius

14.32° — House 6

Ascendant

Cancer

11.38°

Mercury Aries 3.21° — House 10
Venus Aries 16.49° — House 10
Mars Capricorn 26.17° — House 7
Jupiter Aquarius 27.01° — House 8
Saturn Aries 4.18° — House 10

Key Aspects

Sun Square Neptune Orb: 1.2°
Moon Square Mars Orb: 1.8°
Mercury Conjunction Saturn Orb: 1°
Venus Conjunction Saturn Orb: 12.3°
Jupiter Square Sun Orb: 3.7°

Four systems. Four API calls.

Everything you see above comes from these requests.

# 1. Create a person
POST /api/v1/person
{ "birth_date": "1879-03-14", "birth_time": "11:30:00",
  "birth_location_lat": 48.4011, "birth_location_lng": 9.9876,
  "birth_timezone": "Europe/Berlin" }

# 2. Calculate astrology
POST /api/v1/astrology/calculate/{person_uuid}

# 3. Calculate Human Design
POST /api/v1/hd/calculate/{person_uuid}

# 4. Calculate numerology
POST /api/v1/numerology/calculate/{person_uuid}

# 5. Fetch Gene Keys
GET  /api/v1/gene-keys/{person_uuid}

# Or everything at once:
GET  /api/v1/profiles/{person_uuid}/complete

Before / After

Before

  • Open Solar Fire, enter data
  • JovianArchive for HD chart
  • Calculate numerology by hand
  • Look up Gene Keys in the book
  • 30 minutes per client — minimum
  • No copy-paste between systems

After

  • Create person: 1 API call
  • All 4 systems: 4 API calls
  • Or everything at once: /profiles/complete
  • Structured JSON — ready to use
  • Under 2 seconds per person
  • 100 persons simultaneously possible

Charts for every client. Automated.

All personal calculation systems. One API.