# DataVault Current Time by Timezone

> DataVault Current Time by Timezone is a paid API for AI agents from zetavault.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the current date and time for a given timezone

## Facts

- Endpoint: POST https://zetavault.vercel.app/api/time
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datavault-current-time-by-timezone-4274d0ba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gsLV12Hhm06TVCrgqXLgP

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 datavault-current-time-by-timezone-4274d0ba -d '<json body>'
```

Example prompt: What's the current date and time in the America/New_York timezone?

## When to prefer this

Use this endpoint when you need authoritative current time for a specific IANA timezone and want a pay-per-call micro-payment model via USDC on Base, without needing to integrate a separate time API or manage API keys.

## Known failure modes

- Invalid timezone string returns an error or unexpected result
- Missing timezone field may default to UTC or return an error
- Network timeout or Vercel cold start causes delayed response
- Malformed JSON input returns 400-level error

## How this service works

54 endpoints spanning local tools, live data feeds, and AI-powered text processing. Pay-per-call with USDC on Base.

## Output

A JSON object with a success boolean and a data object containing the current time details (date, time, timezone info) for the requested timezone.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "timezone": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/datavault-current-time-by-timezone-4274d0ba/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetavault.vercel.app](https://www.zero.xyz/host/zetavault.vercel.app/llms.txt)
