# Orrery Astrology API

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

Computes an astrological natal chart stack (planetary positions, houses, angles) for a given birth date/time and location.

## Facts

- Endpoint: POST https://paradox-box-production.up.railway.app/v1/stack
- Price: $0.002/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-api-23445821
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__bbGuLmpMohCPhkqHYgYg

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-api-23445821 -d '<json body>'
```

Example prompt: Pull up the full astrological natal chart stack for someone born on June 14, 1988 at 3:22am in Chicago, Illinois — use the standard four-way spread.

## When to prefer this

Choose this endpoint when you need programmatic, machine-readable astrological natal chart computation — especially when you need planetary positions, house placements, and angular data for a specific birth moment and location. Ideal for astrology apps, personality profiling tools, or AI agents that incorporate astrological context. Supports unknown birth times and multiple astrological framework presets.

## Known failure modes

- Invalid or unparseable date-time string returns a validation error
- Unrecognizable place name fails geocoding and returns an error
- Unknown framework preset ID returns an error
- Missing required 'when' or 'where' fields returns a 400-level error
- Payment not included or insufficient results in 402 Payment Required

## How this service works

Astrology for robots.

## Output

Returns a structured astrological 'stack' object containing planetary positions, house cusps, angular points, and framework-specific spread data computed for the given birth moment and location. When time_unknown is set, house and angle data are flagged as unreliable. The response is a flexible object with additional properties reflecting the chosen framework.

## 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 Stack V1 Stack Post",
 "additionalProperties": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orrery-astrology-api-23445821/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)
