# Agent402 UK – Cron Next Fire Times

> Agent402 UK – Cron Next Fire Times is a paid API for AI agents from agent402.co.uk, paid per call via x402, $0.001/call, status down (last checked 2026-09-15).

Returns the next N scheduled fire times for a given cron expression, with full IANA timezone awareness.

## Facts

- Endpoint: GET https://agent402.co.uk/v1/time/cron-next
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-uk-cron-next-fire-times-84c07e1d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fh8dunQevcdjX26Yme2jV

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 agent402-uk-cron-next-fire-times-84c07e1d
```

Example prompt: What are the next 5 fire times for the cron expression '0 8 * * 1-5' in the Europe/London timezone?

## When to prefer this

Choose this endpoint when you need to preview, validate, or plan around a cron schedule — especially when timezone accuracy matters. Ideal for DevOps agents checking job schedules, automation pipelines that need to predict next run windows, or UIs that preview cron timings for users. Prefer over manual cron parsing when timezone conversion is needed alongside schedule computation.

## Known failure modes

- Invalid cron expression returns an error or empty list
- Unsupported IANA timezone string causes a 400-level error
- Count outside 1-50 range may be rejected or clamped
- Missing required 'expression' parameter causes a validation error
- Malformed query parameters return a schema validation failure

## How this service works

Don't burn tokens on deterministic work. Go/no-go jobs first: payout preflight, text firewall (PII/secrets), budget check — then rails, calendars, finmath. x402 USDC on Base. UK + global. agent402.co.uk — not agent402.tools. $0.001–$0.002 USDC on Base. No API keys.

## Output

Returns a list of up to 50 upcoming datetime strings representing when the cron expression will next trigger, expressed in the requested IANA timezone.

## 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": [
      "expression"
     ],
     "properties": {
      "tz": {
       "type": "string",
       "description": "IANA timezone"
      },
      "count": {
       "type": "string",
       "description": "How many next runs (1-50)"
      },
      "expression": {
       "type": "string",
       "description": "Cron expression"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "next": [
   "2026-08-11T08:00:00.000Z",
   "2026-08-12T08:00:00.000Z"
  ],
  "valid": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-uk-cron-next-fire-times-84c07e1d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.co.uk](https://www.zero.xyz/host/agent402.co.uk/llms.txt)
