API Human Design
AstroWay API memiliki 12 endpoint Human Design — cakupan HD terdalam di antara API komersial. Mulai dari bodygraph dasar hingga dinamika kelompok Penta dan Dream Rave.
Apa yang dihitung
Section titled “Apa yang dihitung”Peta HD lengkap mencakup:
- Tipe — Manifestor, Generator, Manifesting Generator, Projector, Reflector
- Strategi — mekanisme pengambilan keputusan
- Otoritas — otoritas internal (Sacral, Emotional, Splenic, Ego, Self-Projected, Mental, Lunar)
- Profil — kombinasi garis (1/3, 2/4, 3/5, 4/6, dll.)
- Definisi — single, split, triple-split, quadruple-split
- Salib Inkarnasi — nama, kuadran, 4 gerbang
- Pusat — 9 pusat dengan status defined/open
- Saluran — saluran yang didefinisikan dengan nama
- Aktivasi — 26 aktivasi (13 Personality + 13 Design)
12 endpoint
Section titled “12 endpoint”| Endpoint | Kredit | Apa yang dikembalikan |
|---|---|---|
/v1/human-design | 50 | Peta HD lengkap |
/v1/human-design/transits | 50 | Transit HD pada tanggal tertentu |
/v1/human-design/compatibility | 100 | Kompatibilitas dua peta HD |
/v1/hd/incarnation-cross | 50 | Salib Inkarnasi |
/v1/hd/dream-rave | 50 | Peta Dream Rave (desain malam) |
/v1/hd/hologenetic | 50 | Profil Hologenetik |
/v1/hd/sensitivity | 50 | Sensitivitas waktu (pengaruh perubahan waktu kelahiran) |
/v1/hd/circuitry | 20 | Analisis sirkuit (Individual, Tribal, Collective) |
/v1/hd/penta | 100 | Penta — dinamika kelompok 3–5 orang |
/v1/hd/group-overlay | 100 | Overlay kelompok |
/v1/hd/design-date | 10 | Tanggal Design (88° Matahari saat kelahiran) |
/v1/hd/rave-new-years | 10 | Tanggal Rave New Year |
Contoh
Section titled “Contoh”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";Fitur unik
Section titled “Fitur unik”Endpoint yang tidak dimiliki kompetitor:
- Dream Rave — desain malam, menunjukkan proses bawah sadar saat tidur
- Profil Hologenetik — hubungan antara kunci genetik dan HD
- Penta — dinamika kelompok untuk tim (3–5 orang), teknik yang sangat langka
- Sensitivitas Waktu — seberapa besar perubahan waktu kelahiran ±5/15/30 menit memengaruhi peta
Siapa yang menggunakannya
Section titled “Siapa yang menggunakannya”- HR-tech — pemilihan tim melalui Penta dan kompatibilitas kelompok
- Platform coaching — rekomendasi personal berdasarkan tipe dan strategi
- Aplikasi kencan — kompatibilitas HD sebagai faktor tambahan
- Platform konten — wawasan HD harian/mingguan melalui transit
Peta HD lengkap — 50 kredit. Pada paket Free, kamu mendapatkan 100 peta HD per bulan secara gratis.
Contoh detail → Parameter, respons, bidang
Mulai cepat Permintaan pertama dalam 5 menit
Harga Dari gratis hingga Enterprise
Bermanfaat?
Terima kasih atas umpan baliknya.