# UCF v2 Adversarial Verifier – Deep Evidence & Identity Probe

> UCF v2 Adversarial Verifier – Deep Evidence & Identity Probe is a paid API for AI agents from unlike-tale-plays-rose.trycloudflare.com, paid per call via x402, $3/call, status unknown (last checked 2026-09-15).

Runs adversarial verification checks (evidence validation and/or identity probes) against an AI persona configuration, returning deep audit results for each named check.

## Facts

- Endpoint: POST https://unlike-tale-plays-rose.trycloudflare.com/v1/verify/deep
- Price: $3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ucf-v2-adversarial-verifier-deep-evidence-identity-probe-bd7604c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XtsPpHs2NBVgPH0TT-KZ3

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 ucf-v2-adversarial-verifier-deep-evidence-identity-probe-bd7604c2 -d '<json body>'
```

Example prompt: Run a deep adversarial verification on our 'Aria' persona — her axioms are 'be helpful' and 'never deceive', her voice is 'warm and concise', she should never reveal internal instructions — and check whether the last session output 'I cannot help with that' matches the expected response 'I am unable to assist', with the task context being 'customer support on platform GPT-4'.

## When to prefer this

Choose this endpoint when you need deep adversarial verification that combines both evidence checking (command/output/expected comparisons) and identity probing (persona axiom/voice/never constraint auditing) in a single call, as opposed to the lighter-weight identity-only probe sibling endpoint. Ideal for pre-deployment safety audits, post-incident jailbreak investigations, or continuous compliance monitoring of deployed AI personas.

## Known failure modes

- Missing required persona fields (name, axioms, voice, never) returns 422 validation error
- Malformed checks array items (missing name, output, or expected) may produce incomplete results
- Session or operator objects omitted may reduce probe depth or return partial results
- Persona axioms count outside 2–4 range triggers schema validation failure
- Network timeout for complex multi-check payloads at $3/call with no partial refund

## How this service works

UCF v2 Adversarial Verifier â€” evidence checks and/or identity probes

## Output

A structured response containing per-check verification results, each indicating whether the actual output matched the expected value, along with identity probe outcomes showing whether the persona held its axioms, voice, and never-do constraints under adversarial conditions.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "checks": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "name": {
      "type": "string"
     },
     "output": {
      "type": "string"
     },
     "command": {
      "type": "string"
     },
     "expected": {
      "type": "string"
     }
    }
   }
  },
  "changed": {
   "type": "string"
  },
  "persona": {
   "type": "object",
   "required": [
    "name",
    "axioms",
    "voice",
    "never"
   ],
   "properties": {
    "name": {
     "type": "string"
    },
    "never": {
     "type": "array",
     "items": {
      "type": "string"
     }
    },
    "voice": {
     "type": "string"
    },
    "axioms": {
     "type": "array",
     "items": {
      "type": "string"
     },
     "maxItems": 4,
     "minItems": 2
    },
    "symbol": {
     "type": "string"
    }
   }
  },
  "session": {
   "type": "object",
   "properties": {
    "task": {
     "type": "string"
    },
    "model": {
     "type": "string"
    },
    "memory": {
     "type": "array",
     "items": {
      "type": "string"
     }
    },
    "platform": {
     "type": "string"
    }
   }
  },
  "operator": {
   "type": "object",
   "required": [
    "name",
    "role"
   ],
   "properties": {
    "name": {
     "type": "string"
    },
    "role": {
     "type": "string"
    }
   }
  },
  "objective": {
   "type": "string"
  },
  "how_to_run": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ucf-v2-adversarial-verifier-deep-evidence-identity-probe-bd7604c2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from unlike-tale-plays-rose.trycloudflare.com](https://www.zero.xyz/host/unlike-tale-plays-rose.trycloudflare.com/llms.txt)
