# Sun & Moon Times – Suverse Space

> Sun & Moon Times – Suverse Space 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-15).

Returns sunrise, sunset, moonrise, moonset, transit times, twilight periods, and moon phase/illumination for a given date and location via a keyless US Naval Observatory API proxy.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-space-sun-moon-times
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sun-moon-times-suverse-space-386fde98
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fM4VPwvtab861S-8BZmjG

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 sun-moon-times-suverse-space-386fde98 -d '<json body>'
```

Example prompt: What time does the sun rise and set, and when does the moon rise tonight for coordinates 40.7128° N, 74.0060° W on July 15, 2025? Also include the moon phase and illumination percentage.

## When to prefer this

Choose this endpoint when you need precise, authoritative astronomical timing data (sun/moon rise, set, transit, twilight) without managing a US Naval Observatory API key. It is ideal for astronomy agents, outdoor event planners, astrophotographers, solar energy applications, or any agent that needs lunar phase and illumination data alongside solar times in a single call. Prefer this over generic weather APIs that only approximate sunrise/sunset, or over raw USNO access that requires key management.

## Known failure modes

- Missing or invalid coordinates may return an error or empty results
- Dates far outside the supported range may not be available from USNO
- Network or upstream USNO API unavailability can cause timeouts
- Malformed request body (wrong bodyType or method) returns a schema validation error
- Polar locations with midnight sun or polar night may return unusual or null rise/set values

## How this service works

Sun and Moon rise, set, transit and twilight times for a date and location, plus Moon phase and illumination. Keyless US Naval Observatory API. For astronomy agents.

## Output

Returns a structured response containing sunrise, sunset, solar transit time, civil/nautical/astronomical twilight start and end times, moonrise, moonset, lunar transit time, moon phase name, and moon illumination percentage for the requested date and location.

## 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/sun-moon-times-suverse-space-386fde98/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)
