# Suverse Time Zone – Current Local Date & Time

> Suverse Time Zone – Current Local Date & Time 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, time, day of week, and DST flag for any IANA timezone, powered by TimeAPI.io, with no API key required.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-time-zone
- 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-zone-current-local-date-time-2fe3c4b4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_asGqw8gOgN-GwrZz15ChG

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-zone-current-local-date-time-2fe3c4b4 -d '<json body>'
```

Example prompt: What is the current local date and time in the America/New_York timezone — and is daylight saving time active right now?

## When to prefer this

Choose this endpoint when you need current local time data for any IANA timezone without managing your own API keys, especially in agentic workflows where scheduling, timestamping, or DST awareness across regions is required and you want a pay-per-call model with no credential overhead.

## Known failure modes

- Invalid or unrecognized IANA timezone string returns an error response
- Upstream TimeAPI.io unavailability causes a degraded or failed response
- Malformed request body (missing required fields) results in a 4xx validation error
- Payment failure via x402 protocol blocks the call before reaching the time API

## How this service works

Current local date and time for an IANA timezone from TimeAPI.io, no key. Returns date, time, day of week, and DST flag. For AI agents scheduling and timestamping across regions.

## Output

Returns a JSON object containing the current local date (year, month, day), current local time (hour, minute, second), the day of the week as a string, and a boolean DST (daylight saving time) flag for the requested IANA timezone.

## 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-zone-current-local-date-time-2fe3c4b4/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)
