# personality-chart

> personality-chart is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-14).

Returns a multi-framework personality and birth chart in a single call: western natal astrology, Vedic sidereal, Chinese BaZi, Pythagorean numerology, I-Ching bodygraph, and biorhythms.

## Facts

- Endpoint: GET https://payai.agentstools.dev/personality/chart
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/personality-chart-69f59982
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9fQZ4t3ew5b2wyrXO6YfA

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 personality-chart-69f59982
```

Example prompt: Can you pull up a full multi-framework birth chart for someone born on March 14, 1990 at 9:30am in Chicago, USA — I want western natal astrology, Vedic sidereal, BaZi, numerology for the name Albert Einstein, I-Ching bodygraph, and today's biorhythms all in one go?

## When to prefer this

Choose this endpoint when you need multiple esoteric/personality frameworks computed simultaneously in a single deterministic call — especially when combining astrology (western + Vedic), Chinese BaZi, numerology, I-Ching, and biorhythms in one response without making separate API calls. Ideal when you need cited, reproducible results with no LLM hallucination risk, no API keys, and a fixed low cost per call.

## Known failure modes

- Missing required 'date' parameter returns a validation error
- Ambiguous or unresolvable 'place' text may fail geocoding — use explicit lat/lon instead
- Invalid date format (not YYYY-MM-DD) causes a parse error
- Providing neither 'tz' nor 'utc_offset' with a birth time may yield UTC-assumed results
- Payment failure (x402) if USDC payment of $0.08 is not attached to the request

## How this service works

Multi-framework birth-chart in ONE call: western natal astrology, Vedic sidereal positions, Chinese BaZi, Pythagorean numerology, a neutral I-Ching bodygraph and biorhythms. Give a birth date (optional time, place or lat and lon, and tz or utc_offset) and get cited JSON across every system. Deterministic, no LLM, no keys.

## Output

A JSON object containing computed results across all six frameworks: western natal planet positions and house placements (if time provided), Vedic sidereal planetary positions, Chinese BaZi four pillars, Pythagorean numerology life path and name numbers (if name provided), I-Ching bodygraph, and biorhythm cycle values for the reference date. Fields unavailable without birth time (houses, Ascendant, exact Moon degree) are flagged rather than fabricated. All results are deterministic and cited.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "date"
     ],
     "properties": {
      "tz": {
       "type": "string",
       "description": "IANA timezone name for the birth time, such as America/New_York. Used to place the local time in UT. Alternatively pass utc_offset."
      },
      "lat": {
       "type": "number",
       "description": "Birth latitude in degrees, north positive."
      },
      "lon": {
       "type": "number",
       "description": "Birth longitude in degrees, east positive."
      },
      "date": {
       "type": "string",
       "description": "Birth date in YYYY-MM-DD format, such as 1990-05-15."
      },
      "name": {
       "type": "string",
       "description": "Full birth name. Optional; enables the numerology name numbers."
      },
      "time": {
       "type": "string",
       "description": "Birth time in HH:MM 24-hour local clock time. Optional; without it a no-time chart is returned and houses, the Ascendant and the exact Moon degree are flagged unavailable rather than fabricated."
      },
      "as_of": {
       "type": "string",
       "description": "Reference date YYYY-MM-DD for the biorhythm cycles. Default is today."
      },
      "place": {
       "type": "string",
       "description": "Birth place as free text, such as New York, USA. Geocoded to coordinates. Alternatively pass explicit lat and lon."
      },
      "utc_offset": {
       "type": "number",
       "description": "UT offset of the birth time in hours, such as -4 or 3."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/personality-chart-69f59982/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
