# Suverse Solar Eclipses API

> Suverse Solar Eclipses 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 a list of solar eclipses for a given year, including event type and date, sourced from the US Naval Observatory.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-space-solar-eclipses
- 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-solar-eclipses-api-931fe476
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Q0UI_XIiYxzjm7wXvOsFO

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-solar-eclipses-api-931fe476 -d '<json body>'
```

Example prompt: What solar eclipses are happening in 2026? I want to know the dates and types so I can plan an observation trip.

## When to prefer this

Use this endpoint when you need authoritative solar eclipse dates and types for a specific calendar year without requiring an API key. Prefer this over general astronomy APIs when you specifically want eclipse calendar data from the US Naval Observatory and need a keyless, low-cost call.

## Known failure modes

- Invalid or missing year parameter may return an error or empty result
- Years far outside the supported range of the Naval Observatory dataset may yield no results
- Network or proxy timeout could result in a failed response
- Malformed request body may return a 400-level error

## How this service works

Solar eclipses in a given year with event type and date. Keyless US Naval Observatory API. For agents tracking eclipse calendars and observation planning.

## Output

A list of solar eclipse events for the requested year, each including the date of the eclipse and its type (e.g. total, annular, partial, hybrid), 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-solar-eclipses-api-931fe476/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)
