Human Design
AstroWay API heeft 12 Human Design endpoints — de diepste dekking van HD onder commerciële API’s. Het hoofdendpoint POST /v1/human-design geeft een volledige kaart terug. Kosten: 50 credits (Tier 3).
12 HD endpoints
Section titled “12 HD endpoints”| Endpoint | Credits | Retourneert |
|---|---|---|
/v1/human-design | 50 | Volledige HD-kaart: type, strategie, autoriteit, kanalen, centra, profiel |
/v1/human-design/transits | 50 | HD-transits op een opgegeven datum |
/v1/human-design/compatibility | 100 | Compatibiliteit tussen twee HD-kaarten |
/v1/hd/incarnation-cross | 50 | Incarnatie kruis |
/v1/hd/dream-rave | 50 | Dream Rave kaart |
/v1/hd/hologenetic | 50 | Hologenetic profiel |
/v1/hd/sensitivity | 50 | Tijdsgevoeligheid (hoe een geboortetijdverandering de kaart beïnvloedt) |
/v1/hd/circuitry | 20 | Analyse van circuits |
/v1/hd/penta | 100 | Penta (groepsdynamiek van 3–5 mensen) |
/v1/hd/group-overlay | 100 | Groepsoverlay |
/v1/hd/design-date | 10 | Design datum (88° Zon voor geboorte) |
/v1/hd/rave-new-years | 10 | Rave New Year datums |
Voorbeeldverzoek
Section titled “Voorbeeldverzoek”De parameters zijn hetzelfde als voor /v1/chart:
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); // bijv. "Generator"console.log(hd.strategy); // bijv. "To Respond"console.log(hd.authority); // bijv. "Sacral"console.log(hd.profile); // bijv. "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']) # bijv. "Generator"print(hd['strategy']) # bijv. "To Respond"print(hd['authority']) # bijv. "Sacral"print(hd['channels']) # Lijst van gedefinieerde kanalen<?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']; // bijv. "Generator"echo $hd['strategy']; // bijv. "To Respond"echo $hd['authority']; // bijv. "Sacral"echo $hd['profile']; // bijv. "1/3"Voorbeeldantwoord
Section titled “Voorbeeldantwoord”{ "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}Belangrijkste antwoordvelden
Section titled “Belangrijkste antwoordvelden”| Veld | Type | Beschrijving |
|---|---|---|
type | string | Manifestor, Generator, Generator Xing (MG), Projector, Reflector |
strategy | string | Beslissingsstrategie |
authority | string | Innerlijke autoriteit |
profile | string | Profiel (bijv. "1/3", "4/6") |
definition | string | single, split, triple-split, quadruple-split |
cross | object | Incarnatie kruis (naam, kwartier, 4 poorten) |
centers | array | 9 centra met de vlag defined/open |
channels | array | Gedefinieerde kanalen |
personalityActivations | array | 13 Personality activaties (bewust) |
designActivations | array | 13 Design activaties (onbewust) |
Verder
Section titled “Verder”- Natal chart — basisverzoek
- Synastrie — compatibiliteit tussen twee kaarten
- Transits — transit overlay
- API reference — alle 723 endpoints
Nuttig?
Bedankt voor je feedback.