# Numerology Calculator - Life Path & Destiny (`motivated_picnic/pythagorean-numerology-calculator`) Actor

Compute a full Pythagorean numerology profile - Life Path, Expression, Soul Urge, Personality, Birthday, Maturity number, and Personal Year forecast - from a name and birth date. Master numbers 11/22/33 preserved. Pure calculation, no external calls. Batch-friendly.

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

## Pricing

$20.00 / 1,000 numerology result 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

## Numerology Calculator - Life Path & Destiny Number

A **Pythagorean numerology calculator**: give it a name and birth date and get a full numerology profile back — **Life Path**, **Expression / Destiny**, **Soul Urge**, **Personality**, Birthday, Maturity, and **Personal Year** — as clean **JSON**, in **batch**, with **zero external API calls** (pure deterministic computation, runs entirely on Apify's cloud). Ideal as a numerology **API** for astrology apps, dating profiles, name-analysis tools, and content pipelines.

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

### What it returns

For each record you get:

| Section (`include` key) | Content |
|---|---|
| `life_path` | Life Path number (from birth date) + reduction trail |
| `expression` | Expression / Destiny number (from full name) |
| `soul_urge` | Soul Urge / Heart's Desire (from name vowels) |
| `personality` | Personality number (from name consonants) |
| `birthday` | Birthday number (from the day) |
| `maturity` | Maturity number (life path + expression) |
| `personal_year` | Personal Year forecast for the target year |

Master numbers **11 / 22 / 33** are preserved (not reduced). Each number includes an original, concise meaning blurb.

### Input

```json
{
  "people": [
    { "name": "John Michael Smith", "year": 1990, "month": 5, "day": 15, "targetYear": 2026, "label": "me" }
  ],
  "include": ["life_path", "expression", "personal_year"]
}
```

- `people` — array (max 1000). `name` optional (required for name-derived numbers). `year` 1000–3000, `month` 1–12, `day` 1–31. `targetYear` optional (defaults to current year, used for Personal Year).
- `include` — sections to return; empty = all.

### Output

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

### Pricing

Pay-per-result: you are charged once per successfully analyzed 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

## `people` (type: `array`):

One or more records to analyze. Each item: { name (optional, full birth name), year, month, day, targetYear (optional, defaults to current year), label (optional) }. Solar (Gregorian) calendar.

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

Which numbers to return. Leave empty for all. Name-derived numbers (expression, soul\_urge, personality, maturity) require a name.

## Actor input object example

```json
{
  "people": [
    {
      "name": "John Michael Smith",
      "year": 1990,
      "month": 5,
      "day": 15,
      "targetYear": 2026,
      "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 = {
    "people": [
        {
            "name": "John Michael Smith",
            "year": 1990,
            "month": 5,
            "day": 15,
            "targetYear": 2026,
            "label": "example"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("motivated_picnic/pythagorean-numerology-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 = { "people": [{
            "name": "John Michael Smith",
            "year": 1990,
            "month": 5,
            "day": 15,
            "targetYear": 2026,
            "label": "example",
        }] }

# Run the Actor and wait for it to finish
run = client.actor("motivated_picnic/pythagorean-numerology-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 '{
  "people": [
    {
      "name": "John Michael Smith",
      "year": 1990,
      "month": 5,
      "day": 15,
      "targetYear": 2026,
      "label": "example"
    }
  ]
}' |
apify call motivated_picnic/pythagorean-numerology-calculator --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,motivated_picnic/pythagorean-numerology-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/ijpCKsm0gKtXz8Cb5/builds/K6RN22hxc9rSESXLD/openapi.json
