# Suverse Time by Coordinate

> Suverse Time by Coordinate 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 the current local time, weekday, timezone name, and DST flag for any geographic coordinate (lat/lon) without requiring a timezone name.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-time-by-coordinate
- 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-time-by-coordinate-435c3fad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kA4gFPD0jXQs_B2PlN_sO

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-by-coordinate-435c3fad -d '<json body>'
```

Example prompt: What's the current local time at coordinates 35.6762 latitude, 139.6503 longitude? I need the full date-time, the day of the week, the timezone name, and whether DST is active.

## When to prefer this

Use this endpoint when you have a GPS coordinate (lat/lon) but no timezone name, and need the current local time at that location. It auto-resolves the timezone, so it is ideal for IoT data pipelines, field operations, or any workflow where only coordinates are available. Prefer this over timezone-name-based APIs when the zone is unknown.

## Known failure modes

- Invalid or out-of-range lat/lon values (e.g. lat > 90 or lon > 180) may return an error or unexpected result
- Coordinates in international waters or uninhabited zones may not resolve to a meaningful timezone
- TimeAPI upstream downtime may cause failed or delayed responses
- Malformed request body (missing lat or lon) returns a 400-level error

## How this service works

Current local time at a lat/lon coordinate via keyless TimeAPI (auto-resolves timezone). Returns ISO date-time, weekday, timezone and DST flag. For agents that only have coordinates, not zone names.

## Output

Returns the current local ISO 8601 date-time string, the day of the week, the IANA timezone name, and a boolean DST flag — all derived from the supplied latitude/longitude without any timezone name input.

## 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-by-coordinate-435c3fad/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)
