# Suverse Time from Coordinates

> Suverse Time from Coordinates is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns the current local date and time (with DST flag) for a given latitude and longitude by resolving the timezone via TimeAPI.io, no API key required.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-time-coordinate
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-time-from-coordinates-36b02d2a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MwY_4oVA63qpuwIexyNCZ

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-time-from-coordinates-36b02d2a -d '<json body>'
```

Example prompt: What is the current local time at coordinates 48.8566° N, 2.3522° E — and is daylight saving time in effect there?

## When to prefer this

Use this endpoint when you need to resolve the current local time and DST status from raw geographic coordinates without managing a TimeAPI.io API key, and when you are operating in an x402 micropayment environment. Prefer it over manual timezone libraries when the exact current DST state matters and you want an authoritative remote lookup rather than a local calculation.

## Known failure modes

- Invalid or out-of-range latitude/longitude returns an error or unexpected timezone
- Ocean or remote coordinates with no well-defined timezone may return UTC or an error
- Network timeout or upstream TimeAPI.io unavailability causes a 5xx response
- Malformed request body (missing lat/lon fields) results in a 4xx validation error
- Payment failure via x402 protocol results in 402 response and no data returned

## How this service works

Current local date and time for a latitude and longitude from TimeAPI.io, no key. Resolves the timezone from coordinates and returns the local time and DST flag. For AI agents localizing time from a location.

## Output

Returns the current local date and time at the specified coordinates, the resolved IANA timezone identifier, and a boolean DST (daylight saving time) flag indicating whether DST is currently in effect at that 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-time-from-coordinates-36b02d2a/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)
