# Korean Saju (Four Pillars) Calculator (`minji_k/manseryeok-calculator`) Actor

Deterministic Korean Saju/BaZi chart from birth date/time: pillars, five elements, ten gods, sinsal, luck cycles.

- **URL**: https://apify.com/minji\_k/manseryeok-calculator.md
- **Developed by:** [Minji Kim](https://apify.com/minji_k) (community)
- **Categories:** AI, Developer tools, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $30.00 / 1,000 calculations

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/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/integrations/mcp.md).

If your project is in a different language, use 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

## Korean Saju (Four Pillars) Calculator

**Turn a birth date and time into a precise Korean Saju (사주 / BaZi) chart — deterministic, astronomically grounded, no LLM guesswork.** Returns the four pillars plus five elements, ten gods, sinsal, and luck cycles as clean structured JSON.

Large language models are unreliable at this exact task — computing the ganzhi calendar, solar-term boundaries, true solar time, and lunar leap months. This Actor does it **correctly**, using real astronomical calculation (Meeus algorithms), so agents and apps can offload it with confidence.

### What it does

- 🎴 **Four Pillars (연·월·일·시주)** — heavenly stems, earthly branches, hidden stems
- 🌗 **True solar time correction** — longitude + equation-of-time, historical Korea timezones (incl. 1908/1954 offsets, DST periods)
- 🔮 **Full analysis** — five elements (오행) %, ten gods (십성), strength (신강/신약), useful god (용신), interactions (형충회합), sinsal (신살)
- 📅 **Luck cycles** — great luck (대운), yearly (세운), monthly (월운)
- 🌙 **Solar & lunar input** — including leap months
- 🧮 **Deterministic** — same input, same output; correctness is the moat, not an LLM

### How to use

Provide the birth details; get the full chart back as a dataset item.

```json
{
  "calendar": "solar",
  "y": 1990, "m": 5, "d": 16,
  "hour": 9, "minute": 30,
  "gender": "F"
}
````

### Input

| Field | Type | Description |
|---|---|---|
| `calendar` | enum | `solar` (default) or `lunar` |
| `y` `m` `d` | integer | Birth year (1900–2100), month, day |
| `hour` `minute` | integer | Birth time, 24h (default 0) |
| `gender` | enum | `M` or `F` (sets luck-cycle direction) |
| `isLeap` | boolean | Lunar leap month (음력 윤달) |
| `longitude` | integer | Birthplace longitude for true-solar-time (default 127 ≈ Seoul) |

### Output

A dataset item with the full chart:

```json
{
  "출생": { "입력": "...", "진태양시": "09:02 (경도보정 −32분 · 균시차 +4분)" },
  "명식": { "일간": "辛(음금)", "연주": { ... }, "월주": { ... }, "일주": { ... }, "시주": { ... } },
  "분석": { "오행": [...], "십성": [...], "신강약": {...}, "용신": "토(土)", "신살": [...] },
  "대운": { ... }, "세운": { ... }, "월운": [ ... ]
}
```

### Pricing

**Pay per event** — $0.03 per successful calculation. Failed inputs are not charged.

### Use cases

- Power a **saju / fortune-telling app** with an accurate calendar engine (no reimplementation)
- Give an **AI agent** a reliable tool for Korean birth-chart data instead of hallucinating pillars
- Generate structured saju data for **research, content, or personalization**

### FAQ

**Why not just ask an LLM?** LLMs routinely get ganzhi, solar-term boundaries, true solar time, and leap months wrong. This is deterministic astronomical computation.

**What range is supported?** Lunar↔solar conversion is reliable for 1900–2100.

**Is the output in Korean?** Yes — the chart uses standard Korean myeongri terminology (한자 + 한글). Downstream translation/narration is up to the caller.

# Actor input Schema

## `calendar` (type: `string`):

Solar or lunar birth date.

## `y` (type: `integer`):

Birth year (1900–2100).

## `m` (type: `integer`):

Birth month (1–12).

## `d` (type: `integer`):

Birth day (1–31).

## `hour` (type: `integer`):

Birth hour, 24h (0–23).

## `minute` (type: `integer`):

Birth minute (0–59).

## `gender` (type: `string`):

Gender (determines luck-cycle direction).

## `isLeap` (type: `boolean`):

Lunar leap month (음력 윤달).

## `longitude` (type: `integer`):

Birthplace longitude for true-solar-time correction (default Seoul 126.978 → use 127).

## Actor input object example

```json
{
  "calendar": "solar",
  "y": 1990,
  "m": 5,
  "d": 16,
  "hour": 9,
  "minute": 30,
  "gender": "F",
  "isLeap": false,
  "longitude": 127
}
```

# 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 = {
    "y": 1990,
    "m": 5,
    "d": 16,
    "hour": 9,
    "minute": 30,
    "gender": "F"
};

// Run the Actor and wait for it to finish
const run = await client.actor("minji_k/manseryeok-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 = {
    "y": 1990,
    "m": 5,
    "d": 16,
    "hour": 9,
    "minute": 30,
    "gender": "F",
}

# Run the Actor and wait for it to finish
run = client.actor("minji_k/manseryeok-calculator").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "y": 1990,
  "m": 5,
  "d": 16,
  "hour": 9,
  "minute": 30,
  "gender": "F"
}' |
apify call minji_k/manseryeok-calculator --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=minji_k/manseryeok-calculator",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Korean Saju (Four Pillars) Calculator",
        "description": "Deterministic Korean Saju/BaZi chart from birth date/time: pillars, five elements, ten gods, sinsal, luck cycles.",
        "version": "0.1",
        "x-build-id": "b1dirDtcbJrOmIiVA"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/minji_k~manseryeok-calculator/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-minji_k-manseryeok-calculator",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/minji_k~manseryeok-calculator/runs": {
            "post": {
                "operationId": "runs-sync-minji_k-manseryeok-calculator",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/minji_k~manseryeok-calculator/run-sync": {
            "post": {
                "operationId": "run-sync-minji_k-manseryeok-calculator",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "y",
                    "m",
                    "d",
                    "gender"
                ],
                "properties": {
                    "calendar": {
                        "title": "Calendar",
                        "enum": [
                            "solar",
                            "lunar"
                        ],
                        "type": "string",
                        "description": "Solar or lunar birth date.",
                        "default": "solar"
                    },
                    "y": {
                        "title": "Year",
                        "type": "integer",
                        "description": "Birth year (1900–2100)."
                    },
                    "m": {
                        "title": "Month",
                        "type": "integer",
                        "description": "Birth month (1–12)."
                    },
                    "d": {
                        "title": "Day",
                        "type": "integer",
                        "description": "Birth day (1–31)."
                    },
                    "hour": {
                        "title": "Hour",
                        "type": "integer",
                        "description": "Birth hour, 24h (0–23)."
                    },
                    "minute": {
                        "title": "Minute",
                        "type": "integer",
                        "description": "Birth minute (0–59)."
                    },
                    "gender": {
                        "title": "Gender",
                        "enum": [
                            "M",
                            "F"
                        ],
                        "type": "string",
                        "description": "Gender (determines luck-cycle direction)."
                    },
                    "isLeap": {
                        "title": "Leap month",
                        "type": "boolean",
                        "description": "Lunar leap month (음력 윤달).",
                        "default": false
                    },
                    "longitude": {
                        "title": "Longitude",
                        "type": "integer",
                        "description": "Birthplace longitude for true-solar-time correction (default Seoul 126.978 → use 127).",
                        "default": 127
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
