# Agent Delivery Acceptance Gate

> Agent Delivery Acceptance Gate 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).

Combines multiple delivery validation checks into a single fail-closed accept/reject decision for x402 or agent-delivered results based on caller-supplied boolean checks.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/agent-delivery-acceptance-gate
- 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/agent-delivery-acceptance-gate-c26e24c0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_otOWqLshMpMqhoubtUGSA

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 agent-delivery-acceptance-gate-c26e24c0 -d '<json body>'
```

Example prompt: Before I pay for this agent delivery, run it through the acceptance gate — the result is complete, within SLA, schema-valid, payment matches, and provenance is present — and tell me whether to accept or reject it.

## When to prefer this

Use this endpoint when you need a single, authoritative fail-closed decision that aggregates multiple delivery quality checks (completeness, SLA, schema validity, payment match, provenance) before accepting or paying for an x402 or agent-assembled delivery. Prefer this over running individual checks separately when you need a unified accept/reject verdict with normalized evidence and mismatch reasons in one call.

## Known failure modes

- Missing required boolean fields may result in an incomplete gate evaluation
- All-false inputs will always produce a rejection with all mismatch reasons listed
- Malformed request body returns a validation error
- Ambiguous or missing provenance flag causes provenance check to fail closed

## How this service works

Agent Delivery Acceptance Gate: Agent Delivery Acceptance Gate combines required delivery checks into one fail-closed acceptance decision from bounded caller-supplied values without an external provider. Call Agent Delivery Acceptance Gate before paying for or accepting an x402 or agent delivery assembled from caller-supplied challenge and result metadata. Returns contract-specific checks, normalized evidence, mismatch reasons, and an explicit acceptance or rejection status for Agent Delivery A…

## Output

Returns an explicit acceptance or rejection status, contract-specific check outcomes, normalized evidence from the supplied flags, and mismatch reasons explaining why any check failed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "complete": {
   "type": "boolean",
   "description": "Complete supplied to Agent Delivery Acceptance Gate; used only for this bounded calculation and processed in memory without retention."
  },
  "within_sla": {
   "type": "boolean",
   "description": "Within Sla supplied to Agent Delivery Acceptance Gate; used only for this bounded calculation and processed in memory without retention."
  },
  "schema_valid": {
   "type": "boolean",
   "description": "Schema Valid supplied to Agent Delivery Acceptance Gate; used only for this bounded calculation and processed in memory without retention."
  },
  "payment_match": {
   "type": "boolean",
   "description": "Payment Match supplied to Agent Delivery Acceptance Gate; used only for this bounded calculation and processed in memory without retention."
  },
  "provenance_present": {
   "type": "boolean",
   "description": "Provenance Present supplied to Agent Delivery Acceptance Gate; used only for this bounded calculation and processed in memory without retention."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "checks": {
    "complete": true,
    "within_sla": true,
    "schema_valid": true,
    "payment_match": true,
    "provenance_present": true
   },
   "accepted": true,
   "failed_checks": []
  },
  "schema": "delx/util-agent-delivery-acceptance-gate/v1",
  "status": "pass",
  "evidence": {
   "retained": false,
   "input_sha256": "944e4ad49cea825f997892500c55a26a4a6935b658218b3de892e1c5bee11f68",
   "external_calls": 0
  },
  "operation": "delivery_contract:agent_delivery_acceptance_gate"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-delivery-acceptance-gate-c26e24c0/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)
