# personality-western

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

Computes a Western tropical natal astrology chart from a birth date and optional birth time/place, returning planetary sign placements, degrees, retrograde flags, Whole-Sign houses, Ascendant, Midheaven, and major Ptolemaic aspects.

## Facts

- Endpoint: GET https://payai.agentstools.dev/personality/western
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/personality-western-7dc48165
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jgPi0Tr4l8K5u96pKErFS

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-western-7dc48165
```

Example prompt: Can you pull up the Western natal astrology chart for someone born on March 14, 1988 at 7:32 AM in Chicago, USA (America/Chicago timezone)? I want to see their planetary sign placements, retrograde flags, Ascendant, Midheaven, Whole-Sign houses, and major aspects.

## When to prefer this

Choose this endpoint when you need a deterministic, ephemeris-based Western tropical natal astrology chart with no AI hallucination risk and no API key management. It is ideal when you need Whole-Sign houses, Ptolemaic aspects, retrograde flags, Ascendant, and Midheaven from a structured computation rather than an LLM-generated interpretation. Prefer it over generic astrology APIs when you need raw, reliable astrological data as input for further interpretation or agent reasoning.

## Known failure modes

- Missing required 'date' parameter returns a validation error
- Unrecognizable place name that cannot be geocoded returns a geocoding error
- Invalid date format (not YYYY-MM-DD) triggers a parsing error
- Invalid IANA timezone name returns a timezone lookup error
- Conflicting lat/lon and place parameters may cause unexpected behavior
- Extreme historical or future dates outside ephemeris range may return errors

## How this service works

Western natal astrology only: tropical planet placements by sign and degree with retrograde flags, Whole-Sign houses, the Ascendant and Midheaven angles and the major Ptolemaic aspects. Give a birth date, and for the angles a time, place and tz or utc_offset. Deterministic ephemeris, no LLM, no keys.

## Output

Returns a structured JSON object containing: tropical planet positions (Sun, Moon, Mercury, Venus, Mars, Jupiter, Saturn, Uranus, Neptune, Pluto) each with sign, degree, and retrograde flag; Whole-Sign house assignments; Ascendant and Midheaven angles with sign and degree (if birth time provided); and a list of major Ptolemaic aspects (conjunction, sextile, square, trine, opposition) between planets with orbs. If no birth time is given, houses, Ascendant, and exact Moon degree are flagged as unavailable.

## 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."
      },
      "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."
      },
      "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-western-7dc48165/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)
