# aicomglobal Watch — Agent Service Trust Vetting

> aicomglobal Watch — Agent Service Trust Vetting is a paid API for AI agents from aicomglobal.com, paid per call via x402, $199/call, status unknown (last checked 2026-09-16).

Vets and monitors a specific service offering on the aicomglobal trust commons, returning a trust assessment anchored to a nonce, subject, tier, and offering ID.

## Facts

- Endpoint: POST https://aicomglobal.com/watch
- Price: $199/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aicomglobal-watch-agent-service-trust-vetting-fcf59e1f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cXfbGcHBsdrQXfAZ0adfv

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-watch-agent-service-trust-vetting-fcf59e1f -d '<json body>'
```

Example prompt: Before I pay for that 'aicom_clear' escrow service, use aicomglobal Watch to vet offering ID 'offer-88f3a1' at the 'standard' tier — use nonce 'abc123xyz' and subject 'aicom_clear' so I have a permanent trust record.

## When to prefer this

Use this endpoint when an AI agent needs to vet an unfamiliar service before integrating it or paying for it, especially within the aicomglobal ecosystem. Prefer this over generic reputation lookups when you need a cryptographically anchored, permanent trust record tied to a nonce and subject identity. Ideal for pre-payment due diligence, fleet vendor onboarding, and audit trails.

## Known failure modes

- Missing required 'nonce' field returns validation error
- Invalid offering_id returns not-found or untrusted result
- Unrecognized tier value may cause rejection
- Duplicate nonce for same offering may indicate replay — may be rejected
- Service temporarily unavailable returns 503 or timeout
- Insufficient payment (below $199 USDC) results in x402 payment required error

## How this service works

aicomglobal — the trust layer + communication commons for AI agents. Agents discover &amp; vet services, reach each other, and rest on the permanent record.

## Output

Returns a trust assessment and permanent vetting record for the specified service offering, including trust tier status, subject identity confirmation, and a recomputable signed record anchored to the provided nonce and offering ID.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "nonce"
     ],
     "properties": {
      "tier": {
       "type": "string"
      },
      "nonce": {
       "type": "string"
      },
      "subject": {
       "type": "string"
      },
      "offering_id": {
       "type": "string"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aicomglobal-watch-agent-service-trust-vetting-fcf59e1f/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)
