# X Pay Current UTC Time

> X Pay Current UTC Time is a paid API for AI agents from www.api-xpay.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns the current server time in UTC along with Unix timestamp, network, and asset metadata

## Facts

- Endpoint: GET https://www.api-xpay.com/x402/time
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x-pay-current-utc-time-d8cb4b85
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jRUD2oSDq5bd3OfuFXRBw

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 x-pay-current-utc-time-d8cb4b85
```

Example prompt: What is the current UTC time right now? I need the exact server time and Unix timestamp from a reliable source.

## When to prefer this

Choose this endpoint when you need a simple, authoritative UTC time and Unix timestamp with no query parameters required, especially in blockchain or x402 payment-aware agent workflows where you want a co-located time reference alongside Base/USDC payment metadata.

## Known failure modes

- Service unavailable returns non-200 status with no time payload
- Payment not received or x402 handshake failure results in 402 error before time data is returned
- Network timeout if the server is temporarily unreachable
- Malformed response if server-side clock service fails

## How this service works

Pay-per-request utility APIs powered by x402 using USDC on Base.

## Output

A JSON object containing the current UTC datetime string (e.g. '2026-09-11T12:00:00.000Z'), the corresponding Unix timestamp as an integer, the payment asset used (USDC), the network (Base), and a success boolean.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "utc": "2026-09-11T12:00:00.000Z",
  "unix": 1757592000,
  "asset": "USDC",
  "network": "base",
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x-pay-current-utc-time-d8cb4b85/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.api-xpay.com](https://www.zero.xyz/host/www.api-xpay.com/llms.txt)
