v1 Endpoints (Legacy)
Generate a simplified bodygraph
Generates a simplified Human Design chart with type, profile, gates, channels, and centers.
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"
}
'import requests
url = "https://api.humandesignapi.nl/v1/bodygraphs/simple"
payload = {
"birthdate": "01-Jan-1990",
"birthtime": "14:30",
"location": "Haarlem, The Netherlands"
}
headers = {
"HD-Api-Key": "<api-key>",
"HD-Geocode-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'HD-Api-Key': '<api-key>',
'HD-Geocode-Key': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
birthdate: '01-Jan-1990',
birthtime: '14:30',
location: 'Haarlem, The Netherlands'
})
};
fetch('https://api.humandesignapi.nl/v1/bodygraphs/simple', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.humandesignapi.nl/v1/bodygraphs/simple",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'birthdate' => '01-Jan-1990',
'birthtime' => '14:30',
'location' => 'Haarlem, The Netherlands'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"HD-Api-Key: <api-key>",
"HD-Geocode-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.humandesignapi.nl/v1/bodygraphs/simple"
payload := strings.NewReader("{\n \"birthdate\": \"01-Jan-1990\",\n \"birthtime\": \"14:30\",\n \"location\": \"Haarlem, The Netherlands\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("HD-Api-Key", "<api-key>")
req.Header.Add("HD-Geocode-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.humandesignapi.nl/v1/bodygraphs/simple")
.header("HD-Api-Key", "<api-key>")
.header("HD-Geocode-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"birthdate\": \"01-Jan-1990\",\n \"birthtime\": \"14:30\",\n \"location\": \"Haarlem, The Netherlands\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.humandesignapi.nl/v1/bodygraphs/simple")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["HD-Api-Key"] = '<api-key>'
request["HD-Geocode-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"birthdate\": \"01-Jan-1990\",\n \"birthtime\": \"14:30\",\n \"location\": \"Haarlem, The Netherlands\"\n}"
response = http.request(request)
puts response.read_body{
"type": "Generator",
"profile": "6/2",
"gates": [
"20",
"34",
"10",
"57"
],
"channels_short": [
"20-34",
"10-57"
],
"centers": [
"G",
"Sacral",
"Spleen",
"Throat"
]
}{
"timestamp": "2023-11-07T05:31:56Z",
"success": false,
"message": "<string>",
"errorCode": "<string>",
"type": "",
"data": null
}{
"timestamp": "2023-11-07T05:31:56Z",
"success": false,
"message": "<string>",
"errorCode": "<string>",
"type": "",
"data": null
}{
"timestamp": "2023-11-07T05:31:56Z",
"success": false,
"message": "<string>",
"errorCode": "<string>",
"type": "",
"data": null
}{
"timestamp": "2023-11-07T05:31:56Z",
"success": false,
"message": "<string>",
"errorCode": "<string>",
"type": "",
"data": null
}Authorizations
Human Design API key
Google Geocoding API key
Body
application/json
Response
Successful simplified bodygraph generation
Human Design type: Generator, Manifesting Generator, Projector, Manifestor, or Reflector
Example:
"Generator"
Profile line combination
Example:
"6/2"
All activated gate numbers
Example:
["20", "34", "10", "57"]
Active channel connections as gate pairs
Example:
["20-34", "10-57"]
Defined (active) energy centers
Example:
["G", "Sacral", "Spleen", "Throat"]
⌘I
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"
}
'import requests
url = "https://api.humandesignapi.nl/v1/bodygraphs/simple"
payload = {
"birthdate": "01-Jan-1990",
"birthtime": "14:30",
"location": "Haarlem, The Netherlands"
}
headers = {
"HD-Api-Key": "<api-key>",
"HD-Geocode-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'HD-Api-Key': '<api-key>',
'HD-Geocode-Key': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
birthdate: '01-Jan-1990',
birthtime: '14:30',
location: 'Haarlem, The Netherlands'
})
};
fetch('https://api.humandesignapi.nl/v1/bodygraphs/simple', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.humandesignapi.nl/v1/bodygraphs/simple",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'birthdate' => '01-Jan-1990',
'birthtime' => '14:30',
'location' => 'Haarlem, The Netherlands'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"HD-Api-Key: <api-key>",
"HD-Geocode-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.humandesignapi.nl/v1/bodygraphs/simple"
payload := strings.NewReader("{\n \"birthdate\": \"01-Jan-1990\",\n \"birthtime\": \"14:30\",\n \"location\": \"Haarlem, The Netherlands\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("HD-Api-Key", "<api-key>")
req.Header.Add("HD-Geocode-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.humandesignapi.nl/v1/bodygraphs/simple")
.header("HD-Api-Key", "<api-key>")
.header("HD-Geocode-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"birthdate\": \"01-Jan-1990\",\n \"birthtime\": \"14:30\",\n \"location\": \"Haarlem, The Netherlands\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.humandesignapi.nl/v1/bodygraphs/simple")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["HD-Api-Key"] = '<api-key>'
request["HD-Geocode-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"birthdate\": \"01-Jan-1990\",\n \"birthtime\": \"14:30\",\n \"location\": \"Haarlem, The Netherlands\"\n}"
response = http.request(request)
puts response.read_body{
"type": "Generator",
"profile": "6/2",
"gates": [
"20",
"34",
"10",
"57"
],
"channels_short": [
"20-34",
"10-57"
],
"centers": [
"G",
"Sacral",
"Spleen",
"Throat"
]
}{
"timestamp": "2023-11-07T05:31:56Z",
"success": false,
"message": "<string>",
"errorCode": "<string>",
"type": "",
"data": null
}{
"timestamp": "2023-11-07T05:31:56Z",
"success": false,
"message": "<string>",
"errorCode": "<string>",
"type": "",
"data": null
}{
"timestamp": "2023-11-07T05:31:56Z",
"success": false,
"message": "<string>",
"errorCode": "<string>",
"type": "",
"data": null
}{
"timestamp": "2023-11-07T05:31:56Z",
"success": false,
"message": "<string>",
"errorCode": "<string>",
"type": "",
"data": null
}
