# Multi-Framework Birth Chart API

> Multi-Framework Birth Chart API is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Generates a comprehensive birth chart in one call covering western natal astrology, Vedic sidereal, Chinese BaZi, Pythagorean numerology, I-Ching bodygraph, and biorhythms from a birth date and optional time/place.

## Facts

- Endpoint: GET https://api.agentstools.dev/personality/chart
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/multi-framework-birth-chart-api-a2c3a228
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RTS14MUgMN_5gMUSTTPOK

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 multi-framework-birth-chart-api-a2c3a228
```

Example prompt: Can you pull a full multi-system birth chart for someone born on March 14, 1988 at 7:30 AM in Chicago, USA — I want western astrology, Vedic, BaZi, numerology, I-Ching bodygraph, and biorhythms all in one shot, and their full name is James Alan Cooper?

## When to prefer this

Use this endpoint when you need all major esoteric personality systems (western astrology, Vedic, BaZi, numerology, I-Ching bodygraph, biorhythms) in a single deterministic call rather than calling separate specialized endpoints. Prefer this over the western-only natal astrology sibling endpoint when multi-framework output is needed. Ideal for holistic personality profiling apps, astrology platforms, or AI agents that need comprehensive birth-chart data without chaining multiple API calls.

## Known failure modes

- Missing required 'date' parameter returns a validation error
- Invalid date format (not YYYY-MM-DD) causes a parsing error
- Unrecognized 'place' string fails geocoding and returns an error
- Passing both 'tz' and 'utc_offset' may cause ambiguity or conflict
- No 'time' provided results in a no-time chart with houses, Ascendant, and exact Moon degree flagged as unavailable
- Invalid lat/lon values outside valid ranges cause a coordinate error

## 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 cited JSON object containing: tropical planet placements by sign and degree with retrograde flags, Vedic sidereal positions, Chinese BaZi four pillars, Pythagorean numerology life path and name numbers, I-Ching gate and line activations for personality and design, and biorhythm cycle percentages — all derived deterministically with no LLM.

## 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/multi-framework-birth-chart-api-a2c3a228/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
