# Human Design API — 12 Endpoints: BodyGraph, Channels, Penta

AstroWay API has **12 Human Design endpoints** — the deepest HD coverage among commercial APIs. From basic bodygraph to group dynamics in Penta and Dream Rave.

## What's calculated

### BodyGraph & Chart

The core BodyGraph from `/v1/human-design`:

- **Type** — Manifestor, Generator, Manifesting Generator, Projector, Reflector
- **Strategy** — decision-making mechanism
- **Authority** — inner authority (Sacral, Emotional, Splenic, Ego, Self-Projected, Mental, Lunar)
- **Profile** — line combination (1/3, 2/4, 3/5, 4/6, etc.)
- **Definition** — single, split, triple-split, quadruple-split

### Channels & Centers

- **Centers** — 9 centers with defined/open flag
- **Channels** — defined channels with names
- **Activations** — 26 activations (13 Personality + 13 Design)
- **Circuitry** — Individual, Tribal, Collective analysis (`/v1/hd/circuitry`)

### Incarnation Cross

`/v1/hd/incarnation-cross` returns the cross name, quarter, and the 4 gates of conscious/unconscious Sun and Earth.

### Penta & Dream Rave

- **Penta** — group dynamics for 3–5 people (`/v1/hd/penta`), an extremely rare technique
- **Dream Rave** — night design showing unconscious processes during sleep (`/v1/hd/dream-rave`)
- **Hologenetic Profile** — connection between gene keys and HD (`/v1/hd/hologenetic`)

### Composite & Relationship HD

`/v1/human-design/compatibility` and `/v1/hd/group-overlay` compare two or more charts for relationship and team analysis. `/v1/human-design/transits` tracks daily HD activations over time.

## 12 endpoints

| Endpoint | Credits | What it returns |
|---|---|---|
| `/v1/human-design` | 50 | Full HD chart |
| `/v1/human-design/transits` | 50 | HD transits for a given date |
| `/v1/human-design/compatibility` | 100 | Compatibility of two HD charts |
| `/v1/hd/incarnation-cross` | 50 | Incarnation Cross |
| `/v1/hd/dream-rave` | 50 | Dream Rave chart (night design) |
| `/v1/hd/hologenetic` | 50 | Hologenetic Profile |
| `/v1/hd/sensitivity` | 50 | Time sensitivity (birth time change impact) |
| `/v1/hd/circuitry` | 20 | Circuitry analysis (Individual, Tribal, Collective) |
| `/v1/hd/penta` | 100 | Penta — group dynamics for 3–5 people |
| `/v1/hd/group-overlay` | 100 | Group overlay |
| `/v1/hd/design-date` | 10 | Design date (88° of Sun before birth) |
| `/v1/hd/rave-new-years` | 10 | Rave New Year dates |

## Example

<Tabs>
  <TabItem label="cURL">
    ```bash frame="terminal"
    curl -X POST https://api.astroway.info/v1/human-design \
      -H "X-Api-Key: aw_live_your_key_here" \
      -H "Content-Type: application/json" \
      -d '{
        "date": "1990-07-14",
        "time": "14:30:00",
        "timezoneOffset": 3,
        "latitude": 50.4501,
        "longitude": 30.5234
      }'
    ```
  </TabItem>
  <TabItem label="Node.js">
    ```ts
    const r = await fetch('https://api.astroway.info/v1/human-design', {
      method: 'POST',
      headers: {
        'X-Api-Key': process.env.ASTROWAY_API_KEY!,
        'Content-Type': 'application/json',
      },
      body: JSON.stringify({
        date: '1990-07-14',
        time: '14:30:00',
        timezoneOffset: 3,
        latitude: 50.4501,
        longitude: 30.5234,
      }),
    });
    const { data: hd } = await r.json();
    console.log(`${hd.type} — ${hd.strategy} — ${hd.authority}`);
    console.log(`Profile: ${hd.profile}, Channels: ${hd.channels.length}`);
    ```
  </TabItem>
  <TabItem label="Python">
    ```python

    r = requests.post(
        'https://api.astroway.info/v1/human-design',
        headers={'X-Api-Key': os.environ['ASTROWAY_API_KEY'], 'Content-Type': 'application/json'},
        json={
            'date': '1990-07-14',
            'time': '14:30:00',
            'timezoneOffset': 3,
            'latitude': 50.4501,
            'longitude': 30.5234,
        },
    )
    hd = r.json()['data']
    print(f"{hd['type']} — {hd['strategy']} — {hd['authority']}")
    print(f"Profile: {hd['profile']}, Channels: {len(hd['channels'])}")
    ```
  </TabItem>
  <TabItem label="PHP">
    ```php
    <?php
    use GuzzleHttp\Client;

    $aw = new Client(['base_uri' => 'https://api.astroway.info/v1/']);
    $r = $aw->post('human-design', [
        'headers' => ['X-Api-Key' => getenv('ASTROWAY_API_KEY')],
        'json' => [
            'date' => '1990-07-14',
            'time' => '14:30:00',
            'timezoneOffset' => 3,
            'latitude' => 50.4501,
            'longitude' => 30.5234,
        ],
    ]);
    $hd = json_decode($r->getBody(), true)['data'];
    echo "{$hd['type']} — {$hd['strategy']} — {$hd['authority']}\n";
    echo "Profile: {$hd['profile']}, Channels: " . count($hd['channels']) . "\n";
    ```
  </TabItem>
</Tabs>

## Unique features

Endpoints not found in competitor APIs:

- **Dream Rave** — night design showing unconscious processes during sleep
- **Hologenetic Profile** — connection between gene keys and HD
- **Penta** — group dynamics for teams (3–5 people), extremely rare technique
- **Time sensitivity** — how birth time shifts of ±5/15/30 min change the chart

## Who uses this

- **HR-tech** — team selection via Penta and group compatibility
- **Coaching platforms** — personalized recommendations based on type and strategy
- **Dating apps** — HD compatibility as an additional factor
- **Content platforms** — daily/weekly HD insights via transits

## Pricing

Full HD chart — **50 credits**. On the Free tier — 100 HD charts per month free.

<CardGrid>
  <LinkCard title="Human Design API guide →" href="/en/blog/human-design-api-guide/" description="Integration walkthrough with code" />
  <LinkCard title="AstroWay vs HumanDesign.ai" href="/en/compare/humandesign-ai/" description="Head-to-head comparison" />
  <LinkCard title="Detailed example →" href="/en/examples/human-design/" description="Parameters, response, fields" />
  <LinkCard title="Quick start" href="/en/getting-started/" description="First request in 5 minutes" />
  <LinkCard title="Pricing" href="/en/pricing/" description="From Free to Enterprise" />
</CardGrid>
