# Aventtech Timezone Converter

> Aventtech Timezone Converter is a paid API for AI agents from api.aventtech.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Converts a datetime (or the current moment) from one IANA timezone to another, returning both the UTC instant and local wall clock times.

## Facts

- Endpoint: GET https://api.aventtech.com/convert/time
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aventtech-timezone-converter-8a167410
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tAGeVTuESG8dnVZRyVVcn

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 aventtech-timezone-converter-8a167410
```

Example prompt: What time is a 3:00 PM meeting on 2025-08-15 in Europe/Athens when converted to America/New_York? Give me the UTC instant and the local wall time in New York.

## When to prefer this

Use this endpoint when you need authoritative IANA timezone conversion with both UTC and local wall times returned together, especially for scheduling or calendar operations. Prefer this over client-side libraries when the agent lacks a runtime environment for date libraries, or when you need a consistent, stateless remote lookup with x402 micropayment billing.

## Known failure modes

- Invalid or unrecognized IANA timezone name in 'from' or 'to' returns a 400 error
- Malformed ISO 8601 datetime in 'dt' parameter returns a 400 error
- Missing required 'from' or 'to' query parameters returns a 400 error
- Payment not included or insufficient for x402 billing returns a 402 error
- Service temporarily unavailable returns a 503 error

## How this service works

Unified digital experiences for Mega Yachts, Executive Spaces, and Luxury Residences. Athens-based, nationwide projects.

## Output

Returns the UTC instant of the given (or current) datetime, the local wall time in the source IANA zone, and the local wall time in the target IANA zone, along with UTC offsets for each zone.

## 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",
     "required": [
      "from",
      "to"
     ],
     "properties": {
      "dt": {
       "type": "string",
       "description": "ISO 8601 datetime or now"
      },
      "to": {
       "type": "string",
       "description": "IANA zone"
      },
      "from": {
       "type": "string",
       "description": "IANA zone, e.g. Europe/Athens"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "to": {
   "zone": "America/New_York",
   "local": "2026-07-23 07:00:00 EDT"
  },
  "instantUtc": "2026-07-23T11:00:00.000Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aventtech-timezone-converter-8a167410/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.aventtech.com](https://www.zero.xyz/host/api.aventtech.com/llms.txt)
