# Suverse Astronomy Daylight Times

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

Returns daily sunrise, sunset, and daylight-duration time series for any geographic coordinate, with timezone awareness, via Open-Meteo.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-astronomy-daylight-times
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-astronomy-daylight-times-3331da48
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4bWrZqZIB2UX-IxhrbzC3

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-astronomy-daylight-times-3331da48 -d '<json body>'
```

Example prompt: Can you get me the daily sunrise and sunset times for the next 7 days at coordinates 48.8566° N, 2.3522° E (Paris)?

## When to prefer this

Choose this endpoint when you need precise, timezone-aware daily solar time data (sunrise, sunset, daylight hours) for any global coordinate without needing an API key. It is ideal for scheduling, photography, solar energy, and astronomy use cases that require a series of daily values rather than a single point-in-time query.

## Known failure modes

- Invalid or out-of-range coordinates (e.g. latitude > 90) may return an error or empty result
- Extreme polar locations during midnight sun or polar night periods may return unusual or null values
- Missing required body fields will result in a validation error
- Network or upstream Open-Meteo availability issues may cause timeouts

## How this service works

Daily sunrise, sunset and daylight-duration series for any coordinate from Open-Meteo. Time-zone aware. Keyless, global. Useful for solar, scheduling, photography and astronomy agents.

## Output

A time series of daily sunrise times, sunset times, and total daylight duration for the specified coordinate and date range, returned in the local timezone of the queried 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/suverse-astronomy-daylight-times-3331da48/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)
