Human Design
Az AstroWay API rendelkezik 12 emberi design (HD) endpointtal – ez a legmélyebb lefedettség a kereskedelmi API-k között. A fő POST /v1/human-design endpoint egy teljes HD-térképet ad vissza. Ára: 50 credit (3. szint).
12 HD endpoint
Szekció neve “12 HD endpoint”| Endpoint | Credit | Visszaadott adat |
|---|---|---|
/v1/human-design | 50 | Teljes HD-térkép: típus, stratégia, autoritás, csatornák, centrumok, profil |
/v1/human-design/transits | 50 | HD-tranzitok adott dátumra |
/v1/human-design/compatibility | 100 | Két HD-térkép kompatibilitása |
/v1/hd/incarnation-cross | 50 | Inkarnációs kereszt |
/v1/hd/dream-rave | 50 | Dream Rave-térkép |
/v1/hd/hologenetic | 50 | Hologenetic Profil |
/v1/hd/sensitivity | 50 | Időérzékenység (mennyire befolyásolja a születési idő megváltozása a térképet) |
/v1/hd/circuitry | 20 | Áramkörök elemzése |
/v1/hd/penta | 100 | Penta (3–5 fős csoportdinamika) |
/v1/hd/group-overlay | 100 | Csoportos átfedés |
/v1/hd/design-date | 10 | Design-dátum (88° Nap a születés előtt) |
/v1/hd/rave-new-years | 10 | Rave New Year dátumok |
Példa kérés
Szekció neve “Példa kérés”A paraméterek ugyanazok, mint a /v1/chart endpointnál:
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 res = await fetch('https://api.astroway.info/v1/human-design', { method: 'POST', headers: { 'Content-Type': 'application/json', 'X-Api-Key': process.env.ASTROWAY_API_KEY!, }, body: JSON.stringify({ date: '1990-07-14', time: '14:30:00', timezoneOffset: 3, latitude: 50.4501, longitude: 30.5234, }),});const hd = await res.json();console.log(hd.type); // pl. "Generator"console.log(hd.strategy); // pl. "To Respond"console.log(hd.authority); // pl. "Sacral"console.log(hd.profile); // pl. "1/3"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()print(hd['type']) # pl. "Generator"print(hd['strategy']) # pl. "To Respond"print(hd['authority']) # pl. "Sacral"print(hd['channels']) # Meghatározott csatornák listája<?phpuse GuzzleHttp\Client;
$client = new Client(['base_uri' => 'https://api.astroway.info/v1/']);$r = $client->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);echo $hd['type']; // pl. "Generator"echo $hd['strategy']; // pl. "To Respond"echo $hd['authority']; // pl. "Sacral"echo $hd['profile']; // pl. "1/3"Példa válasz
Szekció neve “Példa válasz”{ "input": { "date": "1990-07-14", "time": "14:30:00", "timezoneOffset": 3, "latitude": 50.4501, "longitude": 30.5234 }, "type": "Generator", "strategy": "To Respond", "notSelfTheme": "Frustration", "authority": "Sacral", "profile": "1/3", "definition": "single", "cross": { "name": "Right Angle Cross of the Sphinx", "quarter": "Civilization", "gates": [1, 2, 7, 13] }, "centers": [ { "name": "Sacral", "defined": true }, { "name": "Root", "defined": true }, { "name": "SolarPlexus", "defined": false }, { "name": "Heart", "defined": false }, { "name": "Throat", "defined": true }, { "name": "Ajna", "defined": false }, { "name": "Head", "defined": false }, { "name": "Spleen", "defined": true }, { "name": "G", "defined": true } ], "channels": [ { "gate1": 34, "gate2": 20, "name": "Channel of Charisma", "type": "Generated" } ], "personalityActivations": [ { "gate": 1, "line": 3, "planet": "Sun", "side": "personality" } ], "designActivations": [ { "gate": 2, "line": 5, "planet": "Sun", "side": "design" } ], "designJd": 2448000.123, "personalityJd": 2448087.979}Kulcsfontosságú válaszmezők
Szekció neve “Kulcsfontosságú válaszmezők”| Mező | Típus | Leírás |
|---|---|---|
type | string | Manifestor, Generator, Generator Xing (MG), Projector, Reflector |
strategy | string | Döntéshozatali stratégia |
authority | string | Belső autoritás |
profile | string | Profil (pl. "1/3", "4/6") |
definition | string | single, split, triple-split, quadruple-split |
cross | object | Inkarnációs kereszt (név, negyed, 4 kapu) |
centers | array | 9 centrum a defined/open flaggel |
channels | array | Meghatározott csatornák |
personalityActivations | array | 13 Personality-aktiváció (tudatos) |
designActivations | array | 13 Design-aktiváció (tudattalan) |
Továbbiak
Szekció neve “Továbbiak”- Natal térkép — alapvető kérés
- Szinasztría — két térkép kompatibilitása
- Tranzitok — tranzit átfedés
- API referencia — összes 723 endpoint
Hasznos volt?
Köszönjük a visszajelzést.