# Human Design Chart & Bodygraph Calculator (`motivated_picnic/human-design-chart-calculator`) Actor

Compute a full Human Design bodygraph from a birth date, time & timezone: Type, Strategy, Authority, Profile, Definition, Centers, Channels, and Incarnation Cross gates. Uses a pure-JS ephemeris (astronomy-engine) - no external calls. Batch-friendly.

- **URL**: https://apify.com/motivated\_picnic/human-design-chart-calculator.md
- **Developed by:** [쿤스튜](https://apify.com/motivated_picnic) (community)
- **Categories:** AI, Other
- **Stats:** 1 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$20.00 / 1,000 human design chart computeds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Human Design Chart & Bodygraph Calculator

A **Human Design chart calculator**: give it a birth date, time, and timezone and get a full **bodygraph** back — energy **Type**, **Strategy**, **Authority**, **Profile**, defined/open **Centers**, active **Channels**, and **Incarnation Cross** — as clean **JSON**, in **batch**, with **zero external API calls** (a pure-JS VSOP87 ephemeris runs entirely on Apify's cloud). Ideal as a Human Design **API** for astrology apps, coaching tools, and content generators.

Built and maintained by **KunStudio** (also publishers of the Saju API and [sajuapp.app](https://sajuapp.app)).

### What it returns

For each birth record you get:

| Section (`include` key) | Content |
|---|---|
| `type` | Energy Type (Generator / Manifesting Generator / Manifestor / Projector / Reflector) |
| `strategy` / `signature` / `not_self_theme` / `aura` | Type meta guidance |
| `authority` | Inner Authority (Emotional / Sacral / Splenic / Ego / Self-Projected / Mental / Lunar) |
| `profile` / `profile_name` | Profile (e.g. `1/3`) and its names (e.g. Investigator / Martyr) |
| `definition` | Single / Split / Triple Split / Quadruple Split / No definition |
| `defined_centers` / `open_centers` | The 9 centers, split by definition |
| `channels` | Active channels (gate pairs + names) |
| `incarnation_cross_gates` | Personality/Design Sun & Earth gates |
| `personality` / `design` | Full planetary activations (gate + line) for both sides |

Design side is computed at the true ~88° solar arc before birth (osculating lunar node used for the nodes).

### Input

```json
{
  "births": [
    { "year": 1990, "month": 5, "day": 15, "hour": 23, "minute": 30, "tzOffsetMinutes": 540, "label": "me" }
  ],
  "include": ["type", "authority", "profile", "channels"]
}
```

- `births` — array (max 1000). `year` 1920–2050, `month` 1–12, `day` 1–31, `hour` 0–23, `minute` 0–59 (optional), `tzOffsetMinutes` = minutes ahead of UTC (Seoul `+540`, New York EST `-300`; optional, default `0` = input already UTC).
- `include` — fields to return; empty = all.

**Accurate birth time & timezone matter** — a wrong hour can shift the Profile and Authority.

### Output

One dataset item per birth record. Invalid records return `{ ok: false, error }` instead of failing the whole run, so a batch of 1000 never dies on one bad row.

### Accuracy

The ephemeris is [astronomy-engine](https://github.com/cosinekitty/astronomy) (MIT), accurate to ±1 arcminute. Gate-wheel order verified against a SharpAstrology.HumanDesign reference chart.

### Pricing

Pay-per-result: you are charged once per successfully analyzed birth record. No subscription, no free-trial trap — pay only for what you compute.

### Support

Questions, bug reports, or feature requests: **https://sajuapp.app/support**

We usually respond within 1 business day.

# Actor input Schema

## `births` (type: `array`):

One or more birth records. Each item: { year, month, day, hour (0-23), minute (0-59, optional), tzOffsetMinutes (minutes ahead of UTC, e.g. Seoul=+540, New York EST=-300; optional, default 0 = input already in UTC), label (optional) }. Accurate birth time & timezone matter — a wrong hour can change the Profile and Authority.

## `include` (type: `array`):

Which chart fields to return. Leave empty for all.

## Actor input object example

```json
{
  "births": [
    {
      "year": 1990,
      "month": 5,
      "day": 15,
      "hour": 23,
      "minute": 30,
      "tzOffsetMinutes": 540,
      "label": "example"
    }
  ],
  "include": []
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "births": [
        {
            "year": 1990,
            "month": 5,
            "day": 15,
            "hour": 23,
            "minute": 30,
            "tzOffsetMinutes": 540,
            "label": "example"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("motivated_picnic/human-design-chart-calculator").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "births": [{
            "year": 1990,
            "month": 5,
            "day": 15,
            "hour": 23,
            "minute": 30,
            "tzOffsetMinutes": 540,
            "label": "example",
        }] }

# Run the Actor and wait for it to finish
run = client.actor("motivated_picnic/human-design-chart-calculator").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "births": [
    {
      "year": 1990,
      "month": 5,
      "day": 15,
      "hour": 23,
      "minute": 30,
      "tzOffsetMinutes": 540,
      "label": "example"
    }
  ]
}' |
apify call motivated_picnic/human-design-chart-calculator --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,motivated_picnic/human-design-chart-calculator"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/EDqLoD9bYlSHgVpau/builds/TMXggzASdAxawjLc4/openapi.json
