# AGISHub Timezone Converter

> AGISHub Timezone Converter is a paid API for AI agents from api.agishub.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Converts a specific date/time from one IANA timezone to another, accepting ISO 8601 or natural language input and returning the converted datetime with UTC offset, zone abbreviation, and DST flag.

## Facts

- Endpoint: GET https://api.agishub.com/v1/time-convert
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agishub-timezone-converter-57e33c14
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I3-EUk-nIeAmG1rDHupAC

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 agishub-timezone-converter-57e33c14
```

Example prompt: What time is next Tuesday 3pm in America/New_York when converted to Asia/Tokyo? Give me the UTC offset and let me know if DST is in effect.

## When to prefer this

Choose this endpoint when you need a precise, DST-aware conversion of a single datetime between two IANA-standard timezones, especially when accepting natural language input like 'next Tuesday 3pm'. It is ideal for scheduling, calendar, and internationalization tasks where the UTC offset and DST status must be explicitly returned alongside the converted time. Prefer sibling endpoints for timezone arithmetic (adding/subtracting durations) or finding overlapping working hours across multiple participants.

## Known failure modes

- Invalid IANA timezone identifier returns an error — e.g. 'US/Eastern' instead of 'America/New_York'
- Ambiguous natural language datetime (e.g. 'next Tuesday' without a reference date) may produce unexpected results
- Malformed ISO 8601 datetime strings return a parsing error
- Missing required parameters (datetime, from, or to) return a 400-level error
- Future DST transitions may cause incorrect DST flags if timezone data is stale

## How this service works

Convert a specific date/time from one IANA timezone to another (single or batch). Accepts ISO 8601 or natural language ('next Tuesday 3pm'). Returns the converted datetime with UTC offset, zone abbreviation and DST flag.

## Output

A JSON object containing the converted datetime in the target timezone, along with the UTC offset (e.g. +09:00), the timezone abbreviation (e.g. JST), and a boolean DST flag indicating whether daylight saving time is active at that moment.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "queryParams"
   ],
   "properties": {
    "type": {
     "enum": [
      "http"
     ],
     "type": "string"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "datetime",
      "from",
      "to"
     ],
     "properties": {
      "to": {
       "type": "string",
       "description": "Target IANA timezone."
      },
      "from": {
       "type": "string",
       "description": "Source IANA timezone."
      },
      "datetime": {
       "type": "string",
       "description": "ISO 8601 or natural language, e.g. \"2026-07-09T15:30\" or \"next Tuesday 3pm\"."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "enum": [
      "json"
     ],
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "Convert a specific date/time from one IANA timezone to another (single or batch). Accepts ISO 8601 or natural language ("
 }
}
```

## More

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