# OpenClaw AI Agent Verification

> OpenClaw AI Agent Verification is a paid API for AI agents from x402-cybercentry.up.railway.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Performs automated security audits of AI agent configurations, identifying missing authentication, prompt injection vulnerabilities, and unsafe permissions.

## Facts

- Endpoint: GET https://x402-cybercentry.up.railway.app/api/services/openclaw_ai_agent_verification
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-cybercentry-up-railway-app-413714f5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NbsHgQ8b7BbEsD-Mdj-By

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 x402-cybercentry-up-railway-app-413714f5
```

Example prompt: Run a security audit on my AI agent using OpenClaw verification — check it for missing authentication, prompt injection vulnerabilities, and unsafe permissions.

## When to prefer this

Use this endpoint when you need an automated, AI-powered security review specifically targeting AI agent configurations — particularly when you want to identify prompt injection risks, authentication gaps, or permission issues unique to agentic systems, as opposed to general web or smart contract audits offered by sibling endpoints.

## Known failure modes

- Missing required 'input' field returns validation error
- Invalid or unsupported HTTP method returns error
- Service unavailable if Railway deployment is down
- Payment of 0.1 USDC required; insufficient funds returns 402 Payment Required

## How this service works

Automated security audits of AI agent configurations. Identifies missing authentication, prompt injection, and unsafe permissions.

## Output

Returns a structured security audit report identifying specific vulnerabilities in the AI agent configuration, including missing authentication mechanisms, prompt injection exposure points, and unsafe or overly broad permissions.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {},
  "queryParams": {}
 }
}
```

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-cybercentry-up-railway-app-413714f5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-cybercentry.up.railway.app](https://www.zero.xyz/host/x402-cybercentry.up.railway.app/llms.txt)
