# Delx Month Name

> Delx Month Name is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Returns the full month name (e.g. 'January') from an ISO date string for labeling agent reports and outputs.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/month-name
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/delx-month-name-6a1c41ba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pk-k3V8x1k7oWbEqBVRHW

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 delx-month-name-6a1c41ba -d '<json body>'
```

Example prompt: What's the month name for the ISO date 2024-06-15? I want to label my report section with it.

## When to prefer this

Choose this endpoint when an AI agent needs to quickly extract or display a human-readable month name from an ISO date string — especially for report labeling, log annotation, or dashboard formatting — without relying on local date libraries or external services. It is a lightweight, stateless micro-utility costing $0.001 USDC per call.

## Known failure modes

- Invalid or malformed ISO date string returns an error response
- Missing 'iso' field in request body causes a validation error
- Ambiguous date formats not conforming to ISO 8601 may not parse correctly

## How this service works

Month name from ISO date. Call when you label agent reports by month. Returns month and ok for $0.001 USDC via x402 on Base. No network, no keys, no retention; first-party local JSON only. Results are advisory; the caller owns budgets, auth, and production controls.

## Output

Returns a JSON object with the full month name (e.g. 'March') and an 'ok' status field, derived entirely from the provided ISO date string without any external network calls.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "iso": {
   "type": "string",
   "description": "Input field: iso."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "month": "August",
  "schema": "delx/util-month-name/v1"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-month-name-6a1c41ba/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.delx.ai](https://www.zero.xyz/host/api.delx.ai/llms.txt)
