🌍 Astrocartography API, 🔷 Human Design API and ✋ Palmistry API are now live. Ship them in your app today.

Analysis Summary

Summarizes a Human Design chart into compact, ready-to-display analysis blocks. Condenses a chart into defined vs open centers, active channels and circuits, dominant gates, definition type, and a clean decision model (Type, Strategy, Authority, Profile). Use it to power a summary screen.
POSThttps://json.astrologyapi.com/v1/human-design/analysis

Authentication

x-astrologyapi-keystringrequired

API access token used to authenticate requests. Send your access token in this custom header.

Accept-Languagestring

Preferred language for the response content. Supported: English - en.

Body parameters

namestring

Name of the person. Optional.

genderstring

Gender of the person.

daynumberrequired

Day of birth (1-31).

monthnumberrequired

Month of birth (1-12).

yearnumberrequired

Year of birth.

hournumberrequired

Hour of birth (0-23).

minnumberrequired

Minute of birth (0-59).

latnumberrequired

Birth latitude (-90 to 90).

lonnumberrequired

Birth longitude (-180 to 180).

tzonenumberrequired

Timezone offset from UTC in hours.

Submit birth details using: name, gender, day, month, year, hour, min, lat, lon, tzone.
curl --location 'https://json.astrologyapi.com/v1/human-design/analysis' \
  --header 'Content-Type: application/json' \
  --header 'x-astrologyapi-key: <YOUR_ACCESS_TOKEN>' \
  --data '{
    "name": "Ajeet",
    "gender": "male",
    "day": "15",
    "month": "8",
    "year": "1990",
    "hour": "10",
    "min": "30",
    "lat": "39.9526",
    "lon": "-75.1652",
    "tzone": "-5"
}'
Try it

Runs with sample data — no API key needed

{
  "activation_summary": {
    "dominant_gates": [
      {
        "activation_count": 2,
        "gate": 1
      },
      {
        "activation_count": 2,
        "gate": 31
      },
      {
        "activation_count": 2,
        "gate": 38
      },
      {
        "activation_count": 2,
        "gate": 58
      },
      {
        "activation_count": 1,
        "gate": 4
      },
      {
        "activation_count": 1,
        "gate": 8
      },
      {
        "activation_count": 1,
        "gate": 14
      },
      {
        "activation_count": 1,
        "gate": 19
      },
      {
        "activation_count": 1,
        "gate": 21
      },
      {
        "activation_count": 1,
        "gate": 22
      }
    ],
    "dominant_planets": [
      {
        "activation_count": 2,
        "planet": "Sun"
      },
      {
        "activation_count": 2,
        "planet": "earth"
      },
      {
        "activation_count": 2,
        "planet": "Moon"
      },
      {
        "activation_count": 2,
        "planet": "North Node"
      },
      {
        "activation_count": 2,
        "planet": "South Node"
      },
      {
        "activation_count": 2,
        "planet": "Mercury"
      },
      {
        "activation_count": 2,
        "planet": "Venus"
      },
      {
        "activation_count": 2,
        "planet": "Mars"
      },
      {
        "activation_count": 2,
        "planet": "Jupiter"
      },
      {
        "activation_count": 2,
        "planet": "Saturn"
      },
      {
        "activation_count": 2,
        "planet": "Uranus"
      },
      {
        "activation_count": 2,
        "planet": "Neptune"
      },
      {
        "activation_count": 2,
        "planet": "Pluto"
      }
    ]
  },
  "center_summary": {
    "defined_count": 7,
    "open_count": 2,
    "defined_centers": [
      {
        "id": "head",
        "label": "Head"
      },
      {
        "id": "ajna",
        "label": "Ajna"
      },
      {
        "id": "throat",
        "label": "Throat"
      },
      {
        "id": "g_center",
        "label": "G Center"
      },
      {
        "id": "heart",
        "label": "Heart"
      },
      {
        "id": "solar_plexus",
        "label": "Solar Plexus"
      },
      {
        "id": "root",
        "label": "Root"
      }
    ],
    "open_centers": [
      {
        "id": "spleen",
        "label": "Spleen"
      },
      {
        "id": "sacral",
        "label": "Sacral"
      }
    ]
  },
  "decision_model": {
    "authority": {
      "code": "EMOTIONAL",
      "label": "Emotional"
    },
    "profile": {
      "code": "4/1",
      "design_line": 1,
      "personality_line": 4
    },
    "strategy": {
      "code": "INFORM",
      "label": "Inform"
    },
    "type": {
      "code": "MANIFESTOR",
      "label": "Manifestor"
    }
  },
  "definition_summary": {
    "code": "TRIPLE_SPLIT",
    "label": "Triple Split Definition"
  },
  "channel_circuit_summary": [
    {
      "code": "KNOWING",
      "count": 2,
      "label": "Knowing"
    },
    {
      "code": "EGO",
      "count": 1,
      "label": "Ego"
    },
    {
      "code": "TRIBAL",
      "count": 1,
      "label": "Tribal"
    }
  ]
}