Diseño humano
AstroWay API tiene 12 endpoints Human Design — la cobertura más profunda de HD entre las APIs comerciales. El endpoint principal POST /v1/human-design devuelve el mapa completo. Coste: 50 créditos (Nivel 3).
12 endpoints HD
Sección titulada «12 endpoints HD»| Endpoint | Créditos | Respuesta |
|---|---|---|
/v1/human-design | 50 | Mapa HD completo: tipo, estrategia, autoridad, canales, centros, perfil |
/v1/human-design/transits | 50 | Tránsitos HD en una fecha específica |
/v1/human-design/compatibility | 100 | Compatibilidad entre dos mapas HD |
/v1/hd/incarnation-cross | 50 | Cruz de encarnación |
/v1/hd/dream-rave | 50 | Mapa Dream Rave |
/v1/hd/hologenetic | 50 | Perfil Hologenético |
/v1/hd/sensitivity | 50 | Sensibilidad temporal (cómo afecta el cambio de hora de nacimiento al mapa) |
/v1/hd/circuitry | 20 | Análisis de circuitos |
/v1/hd/penta | 100 | Penta (dinámica grupal de 3–5 personas) |
/v1/hd/group-overlay | 100 | Superposición grupal |
/v1/hd/design-date | 10 | Fecha Design (88° del Sol al nacer) |
/v1/hd/rave-new-years | 10 | Fechas de Rave New Year |
Ejemplo de solicitud
Sección titulada «Ejemplo de solicitud»Los parámetros son los mismos que para /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); // ej. "Generator"console.log(hd.strategy); // ej. "To Respond"console.log(hd.authority); // ej. "Sacral"console.log(hd.profile); // ej. "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']) # ej. "Generator"print(hd['strategy']) # ej. "To Respond"print(hd['authority']) # ej. "Sacral"print(hd['channels']) # Lista de canales definidos<?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']; // ej. "Generator"echo $hd['strategy']; // ej. "To Respond"echo $hd['authority']; // ej. "Sacral"echo $hd['profile']; // ej. "1/3"Ejemplo de respuesta
Sección titulada «Ejemplo de respuesta»{ "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}Campos clave de la respuesta
Sección titulada «Campos clave de la respuesta»| Campo | Tipo | Descripción |
|---|---|---|
type | string | Manifestor, Generator, Generator Xing (MG), Projector, Reflector |
strategy | string | Estrategia para tomar decisiones |
authority | string | Autoridad interna |
profile | string | Perfil (ej. "1/3", "4/6") |
definition | string | single, split, triple-split, quadruple-split |
cross | object | Cruz de encarnación (nombre, cuarto, 4 puertas) |
centers | array | 9 centros con bandera defined/open |
channels | array | Canales definidos |
personalityActivations | array | 13 activaciones Personality (consciente) |
designActivations | array | 13 activaciones Design (inconsciente) |
Siguiente
Sección titulada «Siguiente»- Carta natal — solicitud básica
- Sinastria — compatibilidad entre dos cartas
- Tránsitos — superposición de tránsitos
- Referencia de API — todos los endpoints de 723
¿Útil?
Gracias por tu feedback.