# aicomglobal.com Release-Condition Attestation

> aicomglobal.com Release-Condition Attestation is a paid API for AI agents from aicomglobal.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Attests whether a delivered artifact meets a previously committed spec, returning a signed met/not-met/human-review decision that escrow contracts can act on to release or refund funds.

## Facts

- Endpoint: POST https://aicomglobal.com/clear/attest
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aicomglobal-com-release-condition-attestation-5cd9f0b3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nIoucqpA_25cCs7dZEJ8O

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 aicomglobal-com-release-condition-attestation-5cd9f0b3 -d '<json body>'
```

Example prompt: I need a signed oracle verdict on whether this deliverable meets the committed spec — here's the nonce, the full signed commit JSON, and the sha256 hash of the delivered content. Tell me if it's met, not-met, or needs human review so the escrow can settle.

## When to prefer this

Use this endpoint when an agent needs an authoritative, signed, cryptographically recomputable verdict on whether a deliverable meets a pre-frozen specification — specifically in escrow or payment contexts where both parties need a neutral oracle. Prefer it over manual review when the commit has already been frozen via POST /clear/commit and the deliverable is ready for adjudication.

## Known failure modes

- Invalid or expired nonce — attestation request rejected
- Commit signature mismatch — frozen criteria tampered or malformed
- Deliverable hash does not correspond to committed spec — not-met returned
- Missing required fields (nonce, commit, deliverable) — 400 Bad Request
- Payment not received or x402 authorization missing — 402 Payment Required
- Human-review flag returned when decision cannot be automated — requires manual adjudication

## How this service works

Release-condition oracle for agent escrow: a signed, recomputable 'did the delivery meet the committed spec?' DECISION (met|not-met|human-review → release|refund) any escrow can act on. POST /clear/commit (free) freezes the criteria, GET /clear for a nonce, then POST {nonce, commit, deliverable}.

## Output

A signed, recomputable attestation object indicating whether the deliverable satisfied the committed specification (decision: 'met', 'not-met', or 'human-review'), suitable for direct consumption by an escrow contract to trigger release or refund of funds.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "nonce": {
   "type": "string"
  },
  "commit": {
   "type": "string",
   "description": "the full signed Commit from POST /clear/commit, JSON-stringified"
  },
  "deliverable": {
   "type": "string",
   "description": "the deliverable content or its sha256 hash"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aicomglobal-com-release-condition-attestation-5cd9f0b3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from aicomglobal.com](https://www.zero.xyz/host/aicomglobal.com/llms.txt)
