human_design_chart
Calculate a full Human Design chart from birth data, revealing type, strategy, authority, profile, centers, gates, channels, and incarnation cross. Automatically computes both Personality and Design positions.
Instructions
Calculate a full Human Design I Ching hexagram chart from birth data. Returns the person's Type (Generator, Manifesting Generator, Projector, Manifestor, Reflector), Strategy, Authority, Profile (e.g. 1/3, 2/4), defined and undefined Centers, activated Gates and Channels, Incarnation Cross, and both Personality (conscious) and Design (unconscious) planetary positions.
Returns raw JSON. For a user-facing interactive bodygraph, use explore_human_design instead.
CREDIT COST: 2 credits per call.
Human Design uses two calculation moments: the birth time (Personality) and ~88° of Sun motion before birth (~3 months prior, the Design calculation). The API handles this automatically.
The datetime must state its zone — pass an offset/'Z', or pass local time plus timezone. A zone-less datetime is rejected rather than assumed to be UTC: Human Design is minute-sensitive, and an hour of error changes the Profile and the Design Sun line.
EXAMPLE (local birth time + zone): someone born 15 April 1990 at 14:30 in Chicago: datetime='1990-04-15T14:30:00', timezone='America/Chicago', latitude=41.8781, longitude=-87.6298 EXAMPLE (already in UTC): datetime='1990-04-15T19:30:00Z', latitude=41.8781, longitude=-87.6298
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| format | No | Output format. 'llm' returns compact array projection for token efficiency (available on all tiers). 'json' returns verbose full output. | |
| datetime | Yes | ISO 8601 datetime; zone required — a `Z`/±HH:MM suffix or the `timezone` argument. Date-only resolves to 12:00 UTC. Full rule: server `instructions`. | |
| latitude | No | Latitude of birth location in decimal degrees (positive = North). Resolve from a place name with location_search; never recall coordinates from memory. | |
| timezone | No | IANA timezone (e.g. `America/Chicago`); required when the datetime is naive, ignored otherwise. | |
| longitude | No | Longitude of birth location in decimal degrees (positive = East). | |
| visual_config | No | Optional rendering preferences (only used when include_visual=true). | |
| include_visual | No | When true, renders the Human Design bodygraph as an SVG and embeds it in the response. The bodygraph image will display in the conversation alongside the data. Costs 2 additional credits on top of the base call cost. |