Gene Keys Hologenetic Profile API
The hologenetic profile arranges eleven spheres into three sequences, each sphere carrying a gate and a line derived from a planetary position at birth or at the design moment. This endpoint returns the whole profile in one call: Activation, Venus and Pearl, with the gate and line for every sphere.
Gene Keys Hologenetic Profile API
From the birth data the endpoint derives the gate and line for each of the eleven spheres and groups them into the three sequences. The Activation sequence covers Life's Work, Evolution, Radiance and Purpose; the Venus sequence covers Attraction, IQ, EQ and SQ; the Pearl sequence covers Vocation, Culture and Pearl. Every sphere reports which planet produced it and whether it comes from the personality or the design side, so the derivation is auditable rather than opaque, and each carries its name and description in English, Ukrainian and Russian. The sample chart returns gate 23 line 6 for Life's Work, taken from the Sun. Gates come from the same 64-fold division of the zodiac that Human Design uses, so a profile computed here agrees with the bodygraph returned by the Human Design endpoints for the same birth data rather than contradicting it.
POST/v1/hd/hologenetic
curl -X POST https://api.astroway.info/v1/hd/hologenetic \
-H "X-Api-Key: aw_live_..." \
-H "Content-Type: application/json" \
-d '{
"date": "1990-05-15",
"time": "14:30:00",
"timezoneOffset": 3,
"latitude": 50.45,
"longitude": 30.52
}' {
"ok": true,
"data": {
"spheres": [
{
"id": "lifework",
"name_en": "Life's Work",
"sequence": "activation",
"planet": "Sun",
"gate": 23,
"line": 6
}
],
"activationSequence": [],
"venusSequence": [],
"pearlSequence": []
}
} Parameters
| name | type | Required | |
|---|---|---|---|
| date | string (YYYY-MM-DD) | yes | Birth date. |
| time | string (HH:MM:SS) | yes | Local clock time at birth. Lines change faster than gates, so an accurate time matters. |
| timezoneOffset | number (hours) | yes | UTC offset in effect at the birth moment. |
| latitude | number | yes | Birth-place latitude, decimal degrees (north positive). |
| longitude | number | yes | Birth-place longitude, decimal degrees (east positive). |
When to use it
Use this when you are building for the Gene Keys audience specifically, which is adjacent to Human Design but asks different questions: contemplative rather than mechanical, oriented to a sequence of themes to sit with rather than to a strategy and authority. It suits a profile app, a contemplation companion, a course platform that opens content per sphere, or an AI guide that walks a user through one sphere at a time. Because the response includes the planet and the personality or design flag for every sphere, you can render the profile as a derivation and not only as a result, which is what a serious audience for this system expects. Pair it with the Human Design endpoints when a product wants to offer both readings from a single birth entry.
Notes
Eleven spheres across the Activation, Venus and Pearl sequences, each with its gate, line, source planet, and personality or design flag. Gates follow the standard 64-hexagram division of the zodiac shared with Human Design, so profiles agree with the bodygraph for the same data. Positions are computed by the Swiss Ephemeris engine; sphere names and descriptions are returned in English, Ukrainian and Russian.
Try the Gene Keys Profile API
Grab a key and make your first call in under a minute.