Human Design API
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
Section titled “What’s calculated”A full HD chart includes:
- 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
- Incarnation Cross — name, quarter, 4 gates
- Centers — 9 centers with defined/open flag
- Channels — defined channels with names
- Activations — 26 activations (13 Personality + 13 Design)
12 endpoints
Section titled “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
Section titled “Example”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 }'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}`);import os, requests
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'])}")<?phpuse 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";Unique features
Section titled “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
Section titled “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
Section titled “Pricing”Full HD chart — 50 credits. On the Free tier — 100 HD charts per month free.
Detailed example → Parameters, response, fields
Quick start First request in 5 minutes
Pricing From Free to Enterprise
Was this helpful?
Thanks for the feedback.