# Delx Decision Record Check

> Delx Decision Record Check is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-16).

Checks whether an architecture decision record (ADR) contains the required accountable essentials, returning a machine-readable JSON assessment.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/decision-record-check
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/delx-decision-record-check-cfa745fa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A1Rk9pWoxH7MD4_1OoAe4

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-decision-record-check-cfa745fa -d '<json body>'
```

Example prompt: Can you check whether this architecture decision record has all the required accountable essentials before we push it to production? Here's the record: {title: 'Adopt PostgreSQL as primary DB', context: 'We need a reliable relational store', decision: 'Use PostgreSQL 15', consequences: 'Higher ops overhead', status: 'Accepted'}.

## When to prefer this

Choose this endpoint when you need a deterministic, stateless preflight check on an architecture decision record within an enterprise agent workflow — especially before data, policy, integration, security, or commercial decisions reach production. It is ideal when you need machine-readable JSON output with no upstream data retention, and when cost predictability ($0.003 per call) matters at scale.

## Known failure modes

- Missing or malformed 'record' object in request body returns a validation error
- Empty record fields may result in all essentials flagged as missing
- Oversized or deeply nested record objects may be rejected
- Network or payment authorization failures (x402) result in a 402 or 4xx response
- Ambiguous or unstructured record text may yield inconclusive analysis

## How this service works

Check whether an architecture decision record contains accountable essentials. Use it as a bounded preflight or analysis step inside an enterprise agent workflow before data, policy, integration, security, or commercial decisions reach production. Returns deterministic machine-readable JSON for $0.003 USDC via x402 on Base. Execution is first-party, local-only, stateless, memory-only, and has no paid upstream or input retention. Results are advisory; the caller remains responsible for authoriza…

## Output

Returns a deterministic, machine-readable JSON object indicating whether the submitted architecture decision record contains all required accountable essentials, with flags for missing or incomplete fields and an overall pass/fail assessment.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "schema": "delx/util-decision-record-check/v1",
  "missing": [
   "alternatives",
   "consequences"
  ],
  "complete": false,
  "required": [
   "decision",
   "owner",
   "date",
   "context",
   "alternatives",
   "consequences"
  ],
  "completeness_percent": 66.6667
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-decision-record-check-cfa745fa/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)
