# Suverse Moon Phases API

> Suverse Moon Phases API is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns the next upcoming primary Moon phases (New, First Quarter, Full, Last Quarter) with exact dates and times, starting from a given date, via the US Naval Observatory.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-space-moon-phases
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-moon-phases-api-51ba84b1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AM117QxfbbTfHA_gDW5_3

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 suverse-moon-phases-api-51ba84b1 -d '<json body>'
```

Example prompt: What are the upcoming primary moon phases starting from today — give me the exact dates and times for the next New Moon, First Quarter, Full Moon, and Last Quarter.

## When to prefer this

Choose this endpoint when you need authoritative, precise lunar phase times sourced from the US Naval Observatory without requiring an API key. It is ideal for astronomy agents, gardening apps, tide planners, or any use case needing exact New/First Quarter/Full/Last Quarter moon timestamps starting from a given date.

## Known failure modes

- Invalid or missing date input returns an error response
- Date far in the future may exceed USNO data availability
- Network or proxy timeout if upstream USNO API is unavailable
- Malformed request body returns 400-level error
- Payment failure via x402 protocol blocks the call

## How this service works

Upcoming primary Moon phases from a date: New, First Quarter, Full, Last Quarter with exact date and time. Keyless US Naval Observatory API. For astronomy agents.

## Output

An array of upcoming primary moon phase events, each with a phase name (New Moon, First Quarter, Full Moon, Last Quarter), the exact calendar date, and the precise time of occurrence — sourced from US Naval Observatory data.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/suverse-moon-phases-api-51ba84b1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
