# Orrery Astrology Synthesis

> Orrery Astrology Synthesis is a paid API for AI agents from paradox-box-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Generates an astrological chart synthesis for a given birth date, time, and location, returning planetary positions, houses, and interpretive frameworks.

## Facts

- Endpoint: POST https://paradox-box-production.up.railway.app/v1/synthesize
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orrery-astrology-synthesis-114f9504
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ffx2plFAClgdnsz3EwZv_

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 orrery-astrology-synthesis-114f9504 -d '<json body>'
```

Example prompt: Generate an astrological chart synthesis for someone born on June 14, 1988 at 3:22 AM in Chicago, Illinois — use the standard four-way spread.

## When to prefer this

Use this endpoint when you need machine-readable astrological chart data computed from a birth date/time and location, especially when you want structured planetary and house data rather than a human-written horoscope blurb. Prefer it over generic astrology text generators when you need precise positional astronomy tied to a specific datetime and geocoded location, with support for multiple interpretive framework presets.

## Known failure modes

- Missing required 'when' or 'where' fields returns a validation error
- Invalid date/time format in 'when' causes a parsing error
- Unrecognized place name in 'where' may fail geocoding
- Invalid framework preset ID returns an error or falls back to default
- Payment not provided or insufficient results in HTTP 402 response

## How this service works

Astrology for robots.

## Output

Returns a structured JSON object containing planetary positions, astrological house placements, angles, and an interpretive synthesis based on the selected framework preset. Fields vary by framework and may include aspect data, spread positions, and reliability flags when birth time is unknown.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "when",
  "where"
 ],
 "properties": {
  "when": {
   "type": "string",
   "description": "Local date and time, e.g. '1988-06-14 03:22'."
  },
  "where": {
   "type": "string",
   "description": "Place name to geocode, or [latitude, longitude] to skip geocoding."
  },
  "frameworks": {
   "type": "string",
   "description": "Preset framework ids. Defaults to the standard four way spread. See GET /v1/systems for the full list."
  },
  "time_unknown": {
   "type": "boolean",
   "description": "Set when the birth time is not known. Houses and angles are then unreliable and are reported as such."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "title": "Response Synthesize V1 Synthesize Post",
 "additionalProperties": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orrery-astrology-synthesis-114f9504/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from paradox-box-production.up.railway.app](https://www.zero.xyz/host/paradox-box-production.up.railway.app/llms.txt)
