DELXCOMMERCE Free checklist

Production readiness · AI agent APIs

AI agent API evaluation checklist

Before an agent sends a real request, check the outcome, canonical contract, limits, privacy, delivery evidence, payment boundary, and recovery path. This is a production decision aid—not a vendor score or a promise that every API is safe.

agent integrationAPI due diligenceproduction readinessdelivery evidencespend policyrecovery

The rule

Evidence before authorization.

An agent API is ready for a production call only when the caller can identify the intended result, bind the request to a canonical route, enforce its own limits, and verify delivery. Payment authorizes a request; it is not identity authentication. A directory entry, ranking, crawler result, or HTTP 402 challenge is discovery evidence—not proof of delivery.

Eight checks before productionRecord a yes, no, or open question
#CheckEvidence to keepStop if
1Outcome
What exact result is needed?
Input, output and failure boundary written in plain language.The route is selected because its name sounds close.
2Canonical route
Which endpoint owns the result?
First-party catalog, OpenAPI operation or intent response with a stable URL.A reseller, search result or redirect is the only source of truth.
3Contract
What does the live request declare?
Method, schema, version, price, network, recipient, timeout and response shape.Terms are inferred from a stale screenshot or generic marketing page.
4Data boundary
What may leave the caller?
Allowed fields, source rights, processing location, retention and deletion behavior.The route needs credentials or private data that the policy does not allow.
5Execution limits
How does the caller fail closed?
Maximum amount, payload, latency, retries, concurrency and idempotency policy.A retry could duplicate a paid side effect or exceed the spend cap.
6Delivery proof
What proves the job completed?
Expected fields, artifact URL or hash, receipt, status and settlement evidence.Only a 200, a payment receipt or a 402 challenge is available.
7Bounded smoke
Can one real request be verified?
Read-only preflight plus one production smoke with redacted input and a saved result receipt.There is no safe test input, owner-approved authorization or refund path.
8Recovery
What happens after failure?
Timeout, duplicate, refund, revocation, rollback, support and incident owner.No one can explain how to stop, reconcile or recover a partial delivery.

Safe evaluation flow

Discover → preflight → authorize → verify.

Keep free discovery separate from a paid call. The caller should be able to stop after any step, preserve the evidence, and explain why it continued.

# Free: resolve a governed route from the intended outcome
curl --get 'https://api.delx.ai/api/v1/x402/start' \
  --data-urlencode 'q=inspect an API contract before production'

# Read: inspect the live route and 402 challenge
curl -i 'https://api.delx.ai/api/v1/x402/website-intelligence-report'

# Paid: only after policy checks; keep the source attribution header
# and verify the returned result, receipt and refund behavior.

Independent field review · 11–12 August 2026

What a paid review can actually establish.

Would Pay Again paid for 10 independent paid calls across Delx REST and MCP surfaces and published a “would pay again” verdict. The review is useful because it tested parity and bad-input behavior instead of treating a catalog page or a 402 challenge as proof.

01

Parity was tested

The sampled utility calls charged the same listed price and returned matching, independently checkable output over REST and MCP.

02

Two concrete defects surfaced

The MCP 402 resource-host label and util_uuid_generate count=999 behavior were corrected the same day and retested independently on 12 August.

03

The boundary stays honest

Ten calls are evidence about a tested subset, not a certification, ranking claim, endorsement of every route, or guarantee of future behavior.

Read the independent review and its public receipt ledger ↗

Evidence layers

Use each source for what it can prove.

01

Discovery

Catalogs, intent routers and registries help locate a candidate. They do not authorize payment or guarantee current behavior.

02

Contract

OpenAPI, manifests and the live challenge bind method, input, price, recipient, network and output expectations.

03

Delivery

The returned artifact, structured fields, receipt or hash and status prove what happened on this request.

04

Recovery

Timeout, refund, revocation and rollback evidence decide whether the caller can safely continue after a partial outcome.

Delx Commerce implementation

Start with the machine contract, then choose one route.

Delx publishes the paid OpenAPI, x402 manifest, buyer decision brief and Agent Reliability Passport. Use the integration readiness pack for a bounded launch review. Discovery is free; payment is explicit; delivery and external revenue are counted only after verification.

Direct answers

AI agent API evaluation FAQ

01

What should the evaluation start with?

Write the exact outcome and failure boundary, then resolve one canonical route and read the live contract.

02

Does a 402 prove production readiness?

No. It declares payment terms. You still need data boundaries, limits, delivery evidence, refunds and recovery.

03

What does payment authorize?

Payment authorizes a request; it is not identity authentication. Keep identity, authorization and audit policy in the caller.

04

When is one production smoke enough?

After a non-payment preflight passes and the caller can verify the result, receipt, timeout and refund path.