# the402.ai Service Delivery Verification & Payment Release

> the402.ai Service Delivery Verification & Payment Release is a paid API for AI agents from api.the402.ai, paid per call via x402, $0.001/call, status down (last checked 2026-09-15).

Verifies that a purchased service has been delivered and releases the escrowed payment to the provider

## Facts

- Endpoint: POST https://api.the402.ai/v1/threads/thread_6381fe7006164992/verify
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-the402-ai-2bf42a9b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_D9JLAoT0u6g3mUOdd-G1A

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 api-the402-ai-2bf42a9b -d '<json body>'
```

Example prompt: I've received the output from the the402.ai job on thread thread_6381fe7006164992 and it looks good — please verify the delivery and release the payment to the provider.

## When to prefer this

Use this endpoint after a purchased service on the402.ai marketplace has been delivered and you need to formally verify delivery and release the escrowed USDC payment. This is the settlement step in the the402.ai two-phase commerce flow (purchase → verify/release), specifically tied to a known thread ID. Choose this over generic payment APIs when operating within the x402 protocol and the402.ai service ecosystem.

## Known failure modes

- Thread ID not found or invalid — returns 404 or error indicating unrecognized thread
- Service delivery not yet confirmed — returns an error indicating the job is incomplete
- Payment already released — idempotency violation, may return conflict or duplicate error
- Insufficient escrowed funds — payment release fails with a balance error
- x402 payment header missing or malformed — returns 402 Payment Required

## How this service works

Verify service delivery and release payment

## Output

Returns a confirmation that service delivery has been verified and that the escrowed USDC payment has been released to the provider, including the transaction status and any relevant settlement details for the thread.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id"
 ],
 "properties": {
  "id": {
   "type": "string"
  }
 }
}
```

## More

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