Chart Calculation
Calculate complete Human Design bodygraphs from birth data. Type, Strategy, Authority, Profile, Centers, Gates, and Channels.
Build chart calculators, compatibility tools, and transit trackers with our comprehensive REST API. Start free with 100 credits per month.
Calculate complete Human Design bodygraphs from birth data. Type, Strategy, Authority, Profile, Centers, Gates, and Channels.
Real-time planetary transit data with personal overlay calculations. Daily, weekly, and custom range transits.
Relationship compatibility analysis with composite charts and group penta calculations for teams up to 5 people.
Calculate a complete Human Design bodygraph with a single POST request. The API handles all astronomical calculations using the Swiss Ephemeris engine.
curl -X POST https://api.humandesignhub.app/v1/simple-bodygraph \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"birth_date": "1990-01-15",
"birth_time": "14:30",
"birth_place": "Seoul"
}'
// Response:
{
"type": "Generator",
"strategy": "To Respond",
"authority": "Sacral Authority",
"profile": "3/5"
} A first use-case page covering the bodygraph calculation intent and the path to documentation and live API testing.
The first setup pass created a buildable Astro project with content collections, SEO-safe layout defaults, and a dedicated updates section for API, docs, and platform changes.
The Human Design API is a REST API that calculates Human Design bodygraph charts from birth data. It uses the Swiss Ephemeris engine for astronomical precision and returns chart components including Type, Strategy, Authority, Profile, Centers, Gates, and Channels.
Send a POST request to /v1/simple-bodygraph with birth_date, birth_time, and birth_place in the JSON body. The API returns the complete chart calculation including Type, Strategy, and Authority. Get your free API key at humandesignhub.app/developer.
Yes. The Human Design API offers a free tier with 100 API credits per month and 5 requests per minute. No credit card required. The free tier includes the Simple Bodygraph endpoint for basic chart calculations.
A bodygraph is the visual representation of a Human Design chart, showing 9 Centers, 64 Gates, and 36 Channels. The API calculates planetary positions at birth using Swiss Ephemeris, maps them to the I Ching hexagram system, and returns structured data you can use to render bodygraph visualizations.
Absolutely. The API handles all astronomical calculations — you provide birth data (date, time, place) and receive a complete chart. Use the free tier for prototyping, then upgrade for full bodygraph data, composite charts, and interactive visualization components.
Any language that can make HTTP requests works with the API. We provide examples in cURL, JavaScript, and Python. The API returns JSON, making it easy to integrate with React, Vue, Angular, Node.js, Django, Flask, or any other framework.