# AGISHub Time Now

> AGISHub Time Now 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).

Returns the current local time for a given IANA timezone, including UTC offset, zone abbreviation, and DST status.

## Facts

- Endpoint: GET https://api.agishub.com/v1/time-now
- 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-time-now-b7c28488
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HFfDBsFFBgq51lPGKIqux

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-time-now-b7c28488
```

Example prompt: What time is it right now in Tokyo? Give me the local time, UTC offset, and whether daylight saving is in effect — use the Asia/Tokyo timezone.

## When to prefer this

Use this endpoint when you need the precise current local time for a specific IANA timezone, including DST awareness and UTC offset — especially useful in scheduling, meeting coordination, or display contexts where you need authoritative wall-clock time rather than just UTC. Prefer it over manual offset calculations or non-authoritative sources.

## Known failure modes

- Invalid or unrecognized IANA timezone string returns an error response
- Missing 'timezone' query parameter results in a 400 Bad Request
- Network timeout or service unavailability returns a 5xx error
- Ambiguous timezone abbreviations (not IANA format) may be rejected

## How this service works

Get the current local time in an IANA timezone, including the UTC offset, zone abbreviation and whether DST is in effect. Use whenever you need to know what time it is 'now' somewhere.

## Output

A JSON object containing the current local time in the requested IANA timezone, the UTC offset (e.g. +05:30), the timezone abbreviation (e.g. IST, PST, CET), and a boolean or flag indicating whether DST is currently in effect.

## 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": [
      "timezone"
     ],
     "properties": {
      "timezone": {
       "type": "string",
       "description": "IANA timezone, e.g. 'Europe/Madrid', 'Asia/Kolkata'."
      }
     },
     "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": "Get the current local time in an IANA timezone, including the UTC offset, zone abbreviation and whether DST is in effect"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agishub-time-now-b7c28488/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)
