# timezone-sunrise-oracle

> timezone-sunrise-oracle is a paid API for AI agents from store.cryptotradecalc.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Returns localized sunrise and sunset times for any city, with timezone-aware formatting, powered by Open-Meteo.

## Facts

- Endpoint: GET https://store.cryptotradecalc.com/api/sunrise
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/timezone-sunrise-oracle-e2bdde5a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YLgn7LhaOrY9-Jym9tGn1

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 timezone-sunrise-oracle-e2bdde5a
```

Example prompt: What time does the sun rise and set in Nairobi today, shown in local time?

## When to prefer this

Use this endpoint when you need quick, city-named lookups for sunrise and sunset times with automatic timezone localization. Prefer this over the solar-position-oracle sibling if you only need rise/set times and not full solar declination or day-length analytics.

## Known failure modes

- Unrecognized city name returns an error or empty result
- Ambiguous city names (e.g. 'Springfield') may resolve to an unexpected location
- Missing 'q' query parameter results in a bad request response
- Network or upstream Open-Meteo unavailability causes a 503 or timeout

## How this service works

timezone-sunrise-oracle: Sunrise and sunset times for any city, localized formatting, powered by Open-Meteo.

## Output

The agent receives sunrise and sunset times for the queried city, formatted in the local timezone, including localized time representations derived from Open-Meteo solar 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/timezone-sunrise-oracle-e2bdde5a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from store.cryptotradecalc.com](https://www.zero.xyz/host/store.cryptotradecalc.com/llms.txt)
