# astro.dutchdata.io Full Astrological Chart

> astro.dutchdata.io Full Astrological Chart is a paid API for AI agents from astro.dutchdata.io, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Returns a full astrological chart for a given UTC timestamp, listing each planet's sign, degree/minute/second position, house number, retrograde status, and latitude

## Facts

- Endpoint: GET https://astro.dutchdata.io/api/full_chart/dt/1779285600000
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/astro-dutchdata-io-full-astrological-chart-e506f8c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tBxBZMcAbYur0_LjeLUFR

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 astro-dutchdata-io-full-astrological-chart-e506f8c2
```

Example prompt: Can you pull the full astrological chart for January 1st 2026 at midnight UTC — I want to see every planet's sign, house placement, degree-minute-second position, and whether any are retrograde?

## When to prefer this

Use this endpoint when you need a complete multi-planet astrological chart for a specific moment in time, including house placements and retrograde status, expressed as structured JSON. Prefer this over generic astronomy APIs when the output needs to be astrologically interpreted (signs, houses, Rx) rather than astronomically precise coordinates.

## Known failure modes

- Invalid or missing unix_ms_utc path parameter returns an error
- Timestamps far outside supported ephemeris range may return empty or erroneous data
- Malformed timestamp (non-numeric) likely causes a 400 or 500 error
- Payment not fulfilled triggers a 402 Payment Required response requiring x402 micropayment of $0.50 USDC

## How this service works

Full astrological chart

## Output

A JSON array of objects, one per planet (up to 12), each containing: planet index (0–11), zodiac sign index (0–11), degree/minute/second string (e.g. '10º15'30"'), house number (1–12), retrograde boolean, and planetary latitude as a float.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "properties": {
      "unix_ms_utc": {
       "in": "path",
       "type": "string",
       "description": "path parameter"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "schema": {
      "type": "array",
      "items": {
       "type": "object",
       "required": [
        "planet",
        "sign",
        "deg_min_sec",
        "house_num",
        "is_rx",
        "lat"
       ],
       "properties": {
        "lat": {
         "type": "number"
        },
        "sign": {
         "type": "integer",
         "maximum": 11,
         "minimum": 0
        },
        "is_rx": {
         "type": "boolean"
        },
        "planet": {
         "type": "integer",
         "maximum": 11,
         "minimum": 0
        },
        "house_num": {
         "type": "integer",
         "maximum": 12,
         "minimum": 0
        },
        "deg_min_sec": {
         "type": "string"
        }
       }
      }
     },
     "example": [
      {
       "lat": 0.0001,
       "sign": 9,
       "is_rx": false,
       "planet": 0,
       "house_num": 1,
       "deg_min_sec": "10º15'30\""
      }
     ],
     "mimeType": "application/json"
    }
   }
  }
 },
 "description": "x402 Bazaar discovery metadata"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/astro-dutchdata-io-full-astrological-chart-e506f8c2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from astro.dutchdata.io](https://www.zero.xyz/host/astro.dutchdata.io/llms.txt)
