# minia2a Date Math

> minia2a Date Math is a paid API for AI agents from minia2a.uk, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Performs date arithmetic and calendar computations given date-related query parameters

## Facts

- Endpoint: GET https://minia2a.uk/x402/date-math
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minia2a-date-math-a2afe543
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7NUJoBdWU_9nuVjahtQJ9

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 minia2a-date-math-a2afe543
```

Example prompt: Can you calculate what date falls exactly 90 days from today, and also tell me how many days are left until December 31st?

## When to prefer this

Use this endpoint when you need lightweight, on-demand date arithmetic — such as adding or subtracting durations from dates, computing intervals between dates, or deriving deadlines — without needing a full calendar or scheduling platform. Ideal for agent workflows where a quick temporal calculation is needed inline.

## Known failure modes

- Missing or malformed date inputs return an error or unexpected result
- Unsupported operation type in query params may yield no result
- Ambiguous date formats could cause incorrect parsing
- Service may return an error if required query parameters are absent

## How this service works

minia2a service: x402-date-math

## Output

Returns the result of the requested date arithmetic operation, such as a computed target date, the number of days/months/years between two dates, or a derived calendar value based on the input parameters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "method": {
     "type": "string"
    },
    "bodyType": {
     "type": "string"
    },
    "queryParams": {
     "type": "object"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minia2a-date-math-a2afe543/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from minia2a.uk](https://www.zero.xyz/host/minia2a.uk/llms.txt)
