# date-parse

> date-parse is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Parses ISO dates, numeric dates, month names, and relative phrases into multiple date/time representations including ISO 8601 UTC, Unix timestamp, weekday, ISO week, day of year, and a relative description.

## Facts

- Endpoint: GET https://intel.rallylive.ca/data/date-parse
- 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/date-parse-95117d22
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tNot-kjx_fJ3VN-GaSDLG

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 date-parse-95117d22
```

Example prompt: Can you parse 'next Friday 3pm' and give me the ISO 8601 UTC time, Unix timestamp, and weekday for it?

## When to prefer this

Choose this endpoint when you need to resolve natural language date phrases (like 'next Friday', 'in 3 days', 'last month') or ambiguous date strings into structured, machine-readable formats (ISO 8601, Unix time, weekday, ISO week, day of year) in a single call. Prefer it over manual date parsing when your agent handles user-submitted free-text date inputs that may include relative expressions.

## Known failure modes

- Ambiguous date string that cannot be parsed returns an error with a description of the parsing failure
- Unsupported relative phrase formats may not be recognized and return an error
- Date strings in non-English locales or very unusual formats may fail to parse
- Missing or empty 'input' query parameter returns a validation error

## How this service works

Date parser: turns ISO dates, numeric dates, month names and simple relative phrases ('tomorrow', 'in 3 days', 'next friday 3pm', 'last month') into ISO 8601 UTC, Unix time, weekday, ISO week, day of year and a relative description. $0.01 per parse.

## Output

Returns a structured object containing the parsed date as ISO 8601 UTC, Unix timestamp (seconds since epoch), weekday name, ISO week number, day of year, and a human-readable relative description (e.g. 'in 3 days').

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/date-parse-95117d22/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
