# Convrgent AI Numerology Profile

> Convrgent AI Numerology Profile is a paid API for AI agents from convrgent.ai, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Generates a comprehensive numerology profile including Life Path, Birthday, Personal Year/Month, Expression, Soul Urge, Personality, and Chaldean name analysis from birth date and name

## Facts

- Endpoint: POST https://convrgent.ai/api/kyh/numerology
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/convrgent-ai-0f311e95
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aFxlNEMyxtPmTTGnc9g90

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability convrgent-ai-0f311e95 -d '<json body>'
```

Example prompt: Can you run a full numerology profile for me — my name is Sarah Jane Mitchell, born October 14, 1988 — I want the Life Path, Expression, Soul Urge, Personality numbers, and my Chaldean name breakdown including any karmic debts?

## When to prefer this

Choose this endpoint when you need a pure numerology-based personality computation from a birth date and name, particularly when you want both Pythagorean and Chaldean systems covered in a single call. Prefer over generic astrology or psychology endpoints when the user specifically asks about numerology numbers, Life Path, Soul Urge, or name vibration analysis.

## Known failure modes

- Missing or invalid birth date returns 400 error
- Missing or empty name field causes incomplete Chaldean/Expression analysis
- Malformed date format (non-standard) may produce incorrect calculations
- Payment failure via x402 protocol returns 402 status and no profile
- Name containing non-ASCII characters may reduce Chaldean accuracy

## How this service works

Numerology profile — Life Path, Birthday Number, Personal Year/Month, Expression (Pythagorean), Soul Urge, Personality numbers, Chaldean name analysis, karmic debts. Pure mathematical personality system from birth date and name.

## Output

A structured numerology report containing: Life Path number, Birthday Number, Personal Year and Personal Month numbers, Expression number (Pythagorean), Soul Urge number, Personality number, Chaldean name analysis results, and any identified karmic debts — all derived mathematically from the supplied birth date and name.

## Example request

```json
{
 "legalName": "Michael James Anderson",
 "birth_date": "1985-03-22",
 "commonName": "Michael"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body",
    "method"
   ],
   "properties": {
    "body": {
     "required": [
      "birth_date"
     ],
     "properties": {
      "legalName": {
       "type": "string",
       "description": "Full legal name for Pythagorean analysis"
      },
      "birth_date": {
       "type": "string",
       "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
      },
      "commonName": {
       "type": "string",
       "description": "Common/preferred name for Chaldean analysis"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "lifePath": 6,
  "karmicDebts": [],
  "pythagorean": {
   "soulUrge": 3,
   "expression": 7,
   "personality": 4
  },
  "personalYear": 3,
  "birthdayNumber": 15,
  "lifePathMeaning": {
   "label": "The Nurturer",
   "keywords": [
    "responsibility",
    "harmony",
    "service"
   ]
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/convrgent-ai-0f311e95/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from convrgent.ai](https://www.zero.xyz/host/convrgent.ai/llms.txt)
