Numerology Calculator 🔢✨
Professional numerology calculation engine supporting both Pythagorean (Western) and Chaldean (Ancient Babylonian) systems. Enter your full name and birth date to get a complete numerology report including Life Path Number, Destiny Number, Soul Urge, Personality Number, and detailed interpretations. Supports 5 languages.
Built by a CISSP/CISM certified professional at ToolWeb.in
When to Use
- - User asks for a numerology reading or report
- User wants to know their life path number or destiny number
- User asks about lucky numbers based on name or birth date
- User mentions Pythagorean or Chaldean numerology
- User wants name numerology analysis
- User asks for numerology in Tamil, Telugu, Kannada, or Hindi
Prerequisites
- -
TOOLWEB_API_KEY — Get your API key from portal.toolweb.in - INLINECODE1 must be available on the system
CRITICAL: Always Call the API
- - ALWAYS call the ToolWeb API endpoint using curl. Do NOT answer from your own knowledge.
- If the API call fails, tell the user about the error and suggest retrying. Do NOT generate your own assessment.
- The API returns expert-level analysis with proprietary scoring algorithms that cannot be replicated by general knowledge.
- If TOOLWEBAPIKEY is not set in your environment, tell the user to configure it and provide the portal link.
- Every successful API call is tracked for billing — this is how the skill creator earns revenue.
API Endpoint
CODEBLOCK0
Two Numerology Systems
| System | Description |
|---|
| Pythagorean | Western/Modern system. Simple A=1, B=2, C=3 mapping. Most widely used worldwide. |
| Chaldean |
Ancient Babylonian system. Number 9 is sacred and not used in letter mapping. More spiritual and traditional. |
5 Languages Supported
English, Tamil (தமிழ்), Telugu (తెలుగు), Kannada (ಕನ್ನಡ), Hindi (हिन्दी)
Workflow
- 1. Gather inputs from the user:
Required:
- fullName — Full name (as used commonly, e.g., "Krishnakumar Mahadevan")
- birthMonth — Birth month (1-12)
- birthDay — Birth day (1-31)
- birthYear — Birth year (1900-2100)
- system — Numerology system: "pythagorean" or "chaldean"
Optional:
- language — Output language: "english" (default), "tamil", "telugu", "kannada", "hindi"
- 2. Call the API:
CODEBLOCK1
- 3. Present the reading in an engaging format with all calculated numbers and interpretations.
Output Format
CODEBLOCK2
Error Handling
- - If
TOOLWEB_API_KEY is not set: Tell the user to get an API key from https://portal.toolweb.in - If the API returns 401: API key is invalid or expired
- If the API returns 422: Check birth date validity (month 1-12, day 1-31, year 1900-2100) and system must be "pythagorean" or "chaldean"
- If the API returns 429: Rate limit exceeded — wait and retry after 60 seconds
Example Interaction
User: "What's my numerology reading? My name is Priya Sharma, born March 15, 1992"
Agent flow:
- 1. Ask: "Which numerology system would you prefer — Pythagorean (Western) or Chaldean (Ancient)? And which language for the reading?"
- User responds: "Pythagorean, in Hindi please"
- Call API:
curl -s -X POST "https://portal.toolweb.in/apis/lifestyle/numerology" \
-H "Content-Type: application/json" \
-H "X-API-Key: $TOOLWEB_API_KEY" \
-d '{
"fullName": "Priya Sharma",
"birthMonth": 3,
"birthDay": 15,
"birthYear": 1992,
"system": "pythagorean",
"language": "hindi",
"sessionId": "sess-20260314-001",
"userId": 0,
"timestamp": "2026-03-14T12:00:00Z"
}'
- 4. Present the complete numerology reading in Hindi
Pricing
- - API access via portal.toolweb.in subscription plans
- Free trial: 10 API calls/day, 50 API calls/month to test the skill
- Developer: $39/month — 20 calls/day and 500 calls/month
- Professional: $99/month — 200 calls/day, 5000 calls/month
- Enterprise: $299/month — 100K calls/day, 1M calls/month
About
Created by ToolWeb.in — a security-focused MicroSaaS platform with 200+ security APIs, built by a CISSP & CISM certified professional. Trusted by security teams in USA, UK, and Europe and we have platforms for "Pay-per-run", "API Gateway", "MCP Server", "OpenClaw", "RapidAPI" for execution and YouTube channel for demos.
- - 🌐 Toolweb Platform: https://toolweb.in
- 🔌 API Hub (Kong): https://portal.toolweb.in
- 🎡 MCP Server: https://hub.toolweb.in
- 🦞 OpenClaw Skills: https://toolweb.in/openclaw/
- 🛒 RapidAPI: https://rapidapi.com/user/mkrishna477
- 📺 YouTube demos: https://youtube.com/@toolweb-009
Related Skills
- - Palmistry — AI Palm Reader — AI-powered palm reading in 5 languages
Tips
- - Pythagorean is better for beginners and Western audiences
- Chaldean is considered more accurate by traditional practitioners
- Try both systems and compare for a richer understanding
- Regional language support makes this perfect for Indian audiences
- Full name as commonly used gives more accurate readings than legal name
- Run for family members to explore compatibility and dynamics
数字命理学计算器 🔢✨
专业数字命理学计算引擎,支持毕达哥拉斯(西方)和迦勒底(古巴比伦)两种体系。输入您的全名和出生日期,即可获得完整的数字命理学报告,包括生命路径数、命运数、灵魂渴望数、个性数及详细解读。支持5种语言。
由CISSP/CISM认证专家在ToolWeb.in构建
使用场景
- - 用户请求数字命理学解读或报告
- 用户想知道自己的生命路径数或命运数
- 用户询问基于姓名或出生日期的幸运数字
- 用户提及毕达哥拉斯或迦勒底数字命理学
- 用户想要姓名数字命理学分析
- 用户请求泰米尔语、泰卢固语、卡纳达语或印地语的数字命理学服务
前置条件
关键:始终调用API
- - 始终使用curl调用ToolWeb API端点。 不要根据您自己的知识回答。
- 如果API调用失败,告知用户错误信息并建议重试。不要自行生成评估。
- API返回专家级分析,采用专有评分算法,无法通过通用知识复制。
- 如果环境中未设置TOOLWEBAPIKEY,告知用户进行配置并提供门户链接。
- 每次成功的API调用都会被记录用于计费——这是技能创建者的收入来源。
API端点
POST https://portal.toolweb.in/apis/lifestyle/numerology
两种数字命理学体系
| 体系 | 描述 |
|---|
| 毕达哥拉斯 | 西方/现代体系。简单的A=1、B=2、C=3映射。全球使用最广泛。 |
| 迦勒底 |
古巴比伦体系。数字9被视为神圣数字,不用于字母映射。更具灵性和传统性。 |
支持的5种语言
英语、泰米尔语(தமிழ்)、泰卢固语(తెలుగు)、卡纳达语(ಕನ್ನಡ)、印地语(हिन्दी)
工作流程
- 1. 收集用户输入:
必填项:
- fullName — 全名(常用名,如Krishnakumar Mahadevan)
- birthMonth — 出生月份(1-12)
- birthDay — 出生日期(1-31)
- birthYear — 出生年份(1900-2100)
- system — 数字命理学体系:pythagorean或chaldean
可选项:
- language — 输出语言:english(默认)、tamil、telugu、kannada、hindi
- 2. 调用API:
bash
curl -s -X POST https://portal.toolweb.in/apis/lifestyle/numerology \
-H Content-Type: application/json \
-H X-API-Key: $TOOLWEBAPIKEY \
-d {
fullName: ,
birthMonth: ,
birthDay: ,
birthYear: ,
system: ,
language: ,
sessionId: ,
userId: 0,
timestamp:
}
- 3. 以吸引人的格式呈现解读结果,包含所有计算出的数字和解读。
输出格式
🔢 数字命理学报告
━━━━━━━━━━━━━━━━━━━━
姓名:[fullName]
出生日期:[日]/[月]/[年]
体系:[毕达哥拉斯/迦勒底]
🌟 生命路径数:[数字]
[生命路径解读]
🎯 命运数:[数字]
[命运/表达解读]
💖 灵魂渴望数:[数字]
[内心渴望解读]
🎭 个性数:[数字]
[外在个性解读]
🔮 总体解读:
[综合总结与指导]
📎 解读由ToolWeb.in提供
错误处理
- - 如果未设置TOOLWEBAPIKEY:告知用户从https://portal.toolweb.in获取API密钥
- 如果API返回401:API密钥无效或已过期
- 如果API返回422:检查出生日期有效性(月份1-12,日期1-31,年份1900-2100),体系必须为pythagorean或chaldean
- 如果API返回429:超出速率限制——等待60秒后重试
示例交互
用户: 我的数字命理学解读是什么?我叫Priya Sharma,1992年3月15日出生
代理流程:
- 1. 询问:您偏好哪种数字命理学体系——毕达哥拉斯(西方)还是迦勒底(古代)?以及您希望使用哪种语言进行解读?
- 用户回复:毕达哥拉斯,请用印地语
- 调用API:
bash
curl -s -X POST https://portal.toolweb.in/apis/lifestyle/numerology \
-H Content-Type: application/json \
-H X-API-Key: $TOOLWEB
APIKEY \
-d {
fullName: Priya Sharma,
birthMonth: 3,
birthDay: 15,
birthYear: 1992,
system: pythagorean,
language: hindi,
sessionId: sess-20260314-001,
userId: 0,
timestamp: 2026-03-14T12:00:00Z
}
- 4. 以印地语呈现完整的数字命理学解读
定价
- - 通过portal.toolweb.in订阅计划获取API访问权限
- 免费试用:每天10次API调用,每月50次API调用,用于测试技能
- 开发者版:$39/月——每天20次调用,每月500次调用
- 专业版:$99/月——每天200次调用,每月5000次调用
- 企业版:$299/月——每天10万次调用,每月100万次调用
关于
由ToolWeb.in创建——一个专注于安全的MicroSaaS平台,拥有200+安全API,由CISSP和CISM认证专家构建。受到美国、英国和欧洲安全团队的信任,我们拥有按次付费、API网关、MCP服务器、OpenClaw、RapidAPI等执行平台以及YouTube演示频道。
- - 🌐 Toolweb平台:https://toolweb.in
- 🔌 API中心(Kong):https://portal.toolweb.in
- 🎡 MCP服务器:https://hub.toolweb.in
- 🦞 OpenClaw技能:https://toolweb.in/openclaw/
- 🛒 RapidAPI:https://rapidapi.com/user/mkrishna477
- 📺 YouTube演示:https://youtube.com/@toolweb-009
相关技能
- - 手相术——AI手相阅读器 — 支持5种语言的AI手相解读
提示
- - 毕达哥拉斯体系更适合初学者和西方受众
- 传统实践者认为迦勒底体系更准确
- 尝试两种体系并比较,以获得更丰富的理解
- 区域语言支持使其非常适合印度受众
- 使用常用全名比法定姓名能获得更准确的解读
- 为家庭成员进行解读,探索兼容性和动态关系