# Time Lord Summary

> Time Lord Summary is a paid API for AI agents from time.24klabs.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns a synthesized, interpretive narrative summary of the current moment in time across multiple time systems and temporal contexts

## Facts

- Endpoint: POST https://time.24klabs.ai/summary
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/time-lord-summary-3c2a6cd7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4urwymeRVsOvYFw8f2lOt

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 time-lord-summary-3c2a6cd7 -d '<json body>'
```

Example prompt: Give me the Time Lord's synthesized interpretation of right now — a narrative summary of the current moment across time systems.

## When to prefer this

Choose this endpoint when you want a synthesized, narrative, or interpretive take on the current moment — not just raw time data. If you need precise offsets, DST transitions, or raw multi-system time data, use the sibling Temporal Context or Timezone Intelligence endpoints instead. Best suited for creative, journaling, or exploratory use cases where a rich narrative about 'now' is more valuable than structured time fields.

## Known failure modes

- Service unavailable if payment of $0.05 USDC is not processed (402 Payment Required)
- Stale or slightly offset timestamp if server clock is not synchronized
- Ambiguous or incomplete summary if underlying time data sources are unavailable
- Malformed response if POST body is missing required fields

## How this service works

Time Lord synthesized interpretation of the current moment

## Output

A synthesized, narrative interpretation of the current moment in time — likely a prose or structured summary weaving together multiple time systems (e.g., Unix epoch, calendar systems, astronomical time, cultural or esoteric frameworks) into a coherent, human-readable description of 'now'. May include poetic or analytical framing depending on the service's style.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {
      "tz": {
       "type": "string",
       "description": "IANA timezone key"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "The moment holds a quiet convergence..."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/time-lord-summary-3c2a6cd7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from time.24klabs.ai](https://www.zero.xyz/host/time.24klabs.ai/llms.txt)
