# Delx Deployment Readiness

> Delx Deployment Readiness 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-13).

Runs a preflight checklist covering tests, rollback, observability, ownership, and security review before a deployment reaches production, returning structured JSON results.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/deployment-readiness
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/delx-deployment-readiness-44ac7fe5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-aELc1Xizmy21gDD2cnam

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-deployment-readiness-44ac7fe5 -d '<json body>'
```

Example prompt: Before we push this release to production, can you run a deployment readiness check against our current state — covering tests, rollback plan, observability, ownership, and security review — and give me a structured report on whether we're good to go?

## When to prefer this

Use this endpoint when you need a lightweight, stateless, machine-readable preflight gate inside an automated agent workflow before any deployment, policy change, integration, or commercial decision reaches production. Prefer it over custom checklist logic when you need deterministic JSON output covering the canonical five deployment readiness dimensions (tests, rollback, observability, ownership, security) at minimal cost ($0.003 USDC). It is especially suited to enterprise CI/CD pipelines, agentic release workflows, and bounded analysis steps where audit-friendliness and statelessness matter.

## Known failure modes

- Missing or malformed 'checks' input object returns a validation error
- Incomplete check fields may result in partial or inconclusive results
- Network timeout returns no result; caller should retry
- x402 payment failure blocks execution; ensure sufficient USDC balance on Base
- Advisory results only — does not block deployment autonomously; caller must interpret and act

## How this service works

Check tests, rollback, observability, ownership, and security review before deploy. 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 auth…

## Output

A deterministic machine-readable JSON object summarizing the outcome of each preflight check (tests, rollback, observability, ownership, security review), with pass/fail statuses and advisory guidance for each dimension. Results are stateless and non-retained; the caller retains responsibility for final deployment decisions.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ready": false,
  "passed": 4,
  "schema": "delx/util-deployment-readiness/v1",
  "required": [
   "tests",
   "rollback",
   "observability",
   "owner",
   "security_review"
  ],
  "missing_or_failed": [
   "security_review"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-deployment-readiness-44ac7fe5/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)
