ヒューマンデザイン API
AstroWay APIには12のHuman Designエンドポイントがあります。これは商用APIの中で最も包括的なHDカバレッジです。基本的なボディグラフから、Pentaのグループダイナミクス、Dream Raveまで網羅しています。
何が計算されるのか
Section titled “何が計算されるのか”完全なHDマップには以下が含まれます:
- タイプ — マニフェスト、ジェネレーター、マニフェスティング・ジェネレーター、プロジェクター、リフレクター
- ストラテジー — 決断メカニズム
- オーソリティ — 内的オーソリティ(サクラル、エモーショナル、スプリーン、エゴ、セルフ・プロジェクティッド、メンタル、ルナー)
- プロファイル — ラインの組み合わせ(例:1/3、2/4、3/5、4/6など)
- ディフィニション — シングル、スプリット、トリプル・スプリット、クアドラプル・スプリット
- インカーネーション・クロス — 名前、クォーター、4つのゲート
- センターズ — 9つのセンター(定義済み/オープン)
- チャンネル — 定義済みチャンネルとその名前
- アクティベーション — 26のアクティベーション(13 Personality + 13 Design)
12のエンドポイント
Section titled “12のエンドポイント”| エンドポイント | クレジット | 返されるデータ |
|---|---|---|
/v1/human-design | 50 | 完全なHDマップ |
/v1/human-design/transits | 50 | 指定日のHDトランジット |
/v1/human-design/compatibility | 100 | 2人のHDマップの互換性 |
/v1/hd/incarnation-cross | 50 | インカーネーション・クロス |
/v1/hd/dream-rave | 50 | Dream Raveマップ(ナイト・デザイン) |
/v1/hd/hologenetic | 50 | ホロジェネティック・プロファイル |
/v1/hd/sensitivity | 50 | 時間感度(出生時刻の±5/15/30分の変化による影響) |
/v1/hd/circuitry | 20 | 回路の分析(インディヴィジュアル、トライブ、コレクティブ) |
/v1/hd/penta | 100 | Penta — 3〜5人のグループダイナミクス |
/v1/hd/group-overlay | 100 | グループ・オーバーレイ |
/v1/hd/design-date | 10 | デザイン・デート(出生前の太陽88°) |
/v1/hd/rave-new-years | 10 | Rave New Yearの日付 |
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";競合他社にない独自機能
Section titled “競合他社にない独自機能”他社にはないエンドポイント:
- Dream Rave — 睡眠中の無意識のプロセスを示すナイト・デザイン
- Hologenetic Profile — 遺伝子キーとHDの関連性
- Penta — チーム(3〜5人)のグループダイナミクス、非常に珍しい手法
- 時間感度 — 出生時刻の±5/15/30分の変化がマップに与える影響
- HRテック — Pentaやグループ互換性によるチーム編成
- コーチングプラットフォーム — タイプやストラテジーに基づくパーソナライズされた推奨
- デーティングアプリ — HD互換性を追加要素として活用
- コンテンツプラットフォーム — トランジットを通じた日次/週次のHDインサイト
完全なHDマップは50クレジットです。Freeプランでは月に100枚のHDマップを無料で利用できます。
参考になりましたか?
フィードバックありがとうございます。