How to add Human Design to your app
Human Design (branded here as Energy Blueprint) charts come from a birth date, time, and place. To add them to your product you call a chart API that computes type, authority, profile, channels, and centers from an ephemeris. Here is how the options compare.
The chart APIs
| Capability | MysticAPI | bodygraph.com | humandesignapi.nl | Generic astrology APIs |
|---|---|---|---|---|
| Focus | Human Design + astrology engine | Human Design software (API add-on) | Human Design charts | Astrology (not Human Design-specialized) |
| Pricing model | Flat monthly ($0 / $19 / $49 / $149) | Subscription (practitioner-oriented) | Credit-based (5k / 10k / 50k credits, rollover) | Varies (flat or per-call) |
| Free tier (no card) | 50 calls / month | Free charts (product), API varies | Trial / credits | Varies |
| Remote MCP server | Yes — /mcp | Not listed (Jul 2026) | Not listed (Jul 2026) | Some (e.g. RoxyAPI) |
| Pay-per-call (x402) | Yes — USDC on Base | No | No | Rare |
| Bodygraph chart JSON | Yes | Yes | Yes | Not Human Design |
| Body-graph SVG render | Yes | Yes (visual charts) | JSON only (listed) | Chart images vary |
| Personal-sky SVG | Yes | Not listed | Not listed | Some |
| Relationship / composite chart | Yes — /v1/relationship | Yes (relationship charts) | Not listed (Jul 2026) | Synastry varies |
| Numerology + raw ephemeris endpoints | Yes — /v1/numerology, /v1/ephemeris | Not listed | Not listed | Some |
| Try before key (live in-browser demo) | Yes — on / and /docs | Not listed | Not listed | Rare |
| Ephemeris | JPL-validated (Meeus + Standish) | Proprietary | NASA JPL | Varies |
| OpenAPI + llms.txt | Yes (3.1 + llms.txt) | Docs | Docs | Varies |
| Auth | Bearer key or x402 | API key | API key (header) | API key |
Comparison compiled July 2026 from each provider’s public documentation. “Not listed” means the capability was not advertised in public docs at that time, not that it is impossible. Corrections: the facts above are checkable against each vendor’s site.
What each returns
- MysticAPI —
POST /v1/bodygraphreturns the full chart JSON and a body-graph SVG in one call; birth data is UTC and no location is needed (the body-graph is location-independent). It also renders a personal-sky SVG and exposes a remote MCP server. - bodygraph.com — Human Design software for practitioners with an API add-on for individual and relationship charts and visual chart rendering.
- humandesignapi.nl — a RESTful JSON API billed by credits, computed on the NASA JPL ephemeris, returning types, profiles, gates, channels, and centers.
First call
curl -X POST https://mysticapi.com/v1/bodygraph \
-H "Authorization: Bearer mk_live_..." \
-H "content-type: application/json" \
-d '{"year":1990,"month":3,"day":15,"hour":12,"minute":30}'
Get a free key in the quickstart.