Skip to main content
POST
/
bodygraphs
/
simple
Generate a simplified bodygraph
curl --request POST \
  --url https://api.humandesignapi.nl/v1/bodygraphs/simple \
  --header 'Content-Type: application/json' \
  --header 'HD-Api-Key: <api-key>' \
  --header 'HD-Geocode-Key: <api-key>' \
  --data '
{
  "birthdate": "01-Jan-1990",
  "birthtime": "14:30",
  "location": "Haarlem, The Netherlands"
}
'
{
  "type": "Generator",
  "profile": "6/2",
  "gates": [
    "20",
    "34",
    "10",
    "57"
  ],
  "channels_short": [
    "20-34",
    "10-57"
  ],
  "centers": [
    "G",
    "Sacral",
    "Spleen",
    "Throat"
  ]
}

Authorizations

HD-Api-Key
string
header
required

Human Design API key

HD-Geocode-Key
string
header
required

Google Geocoding API key

Body

application/json
birthdate
string
required

Date of birth in a valid format

Example:

"01-Jan-1990"

birthtime
string
required

Time of birth in HH:MM format

Example:

"14:30"

location
string
required

Location of birth (city, country)

Minimum string length: 4
Example:

"Haarlem, The Netherlands"

Response

Successful simplified bodygraph generation

type
string

Human Design type: Generator, Manifesting Generator, Projector, Manifestor, or Reflector

Example:

"Generator"

profile
string

Profile line combination

Example:

"6/2"

gates
string[]

All activated gate numbers

Example:
["20", "34", "10", "57"]
channels_short
string[]

Active channel connections as gate pairs

Example:
["20-34", "10-57"]
centers
string[]

Defined (active) energy centers

Example:
["G", "Sacral", "Spleen", "Throat"]