# 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-14).

Converts a date/time from one IANA timezone to another, supporting ISO 8601 and natural language input, and returns the converted time with UTC offset, abbreviation, and DST flag.

## Facts

- Endpoint: POST https://api.agishub.com/paid/time-convert
- 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/agishub-timezone-converter-5ce3b68d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A4HBSWVhtL1WTREA08Fyh

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-5ce3b68d -d '<json body>'
```

Example prompt: What time is 2026-07-09 at 3:30pm in America/New_York when converted to Asia/Tokyo? Include whether DST is active and the UTC offset.

## When to prefer this

Choose this endpoint when you need to convert a specific point in time between two IANA timezones and require structured output including UTC offset, zone abbreviation, and DST status. It supports both machine-readable ISO 8601 and natural language inputs, making it suitable for both automated pipelines and user-facing agents parsing conversational date expressions.

## Known failure modes

- Invalid IANA timezone string returns an error indicating the zone is unrecognized
- Unparseable natural language datetime returns a parsing error
- Missing required parameters (datetime, from, to) returns a 400 bad request
- Ambiguous natural language input (e.g. 'Tuesday') without sufficient context may return an unexpected result

## 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 string, 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 the converted time.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "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
    },
    "type": {
     "enum": [
      "http"
     ],
     "type": "string"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "enum": [
      "json"
     ],
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agishub-timezone-converter-5ce3b68d/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)
