# AI Utility Farm – Technical Risk Analysis

> AI Utility Farm – Technical Risk Analysis is a paid API for AI agents from ai-utility-farm.brycedees1.chatgpt.site, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Analyzes a public website URL and returns a technical risk report including security, AI readiness, and accessibility scores with prioritized findings.

## Facts

- Endpoint: POST https://ai-utility-farm.brycedees1.chatgpt.site/v1/technical-risk
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ai-utility-farm-technical-risk-analysis-c336a75f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kVG8FSFsZFQofPZBewXgc

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 ai-utility-farm-technical-risk-analysis-c336a75f -d '<json body>'
```

Example prompt: Can you run a technical risk analysis on https://example.com and tell me the risk score, security rating, and any prioritized findings?

## When to prefer this

Choose this endpoint when you need a structured, scored technical risk snapshot of a public website — specifically combining security posture, AI readiness, and accessibility into one report. Prefer it over generic scrapers when you need normalized component scores and prioritized findings rather than raw HTML.

## Known failure modes

- Non-public or unreachable URL returns fetch error
- Invalid URL format rejected by schema validation
- Paid report requires valid x402 Base USDC payment; missing payment returns 402
- Rate limiting or server-side timeout on slow sites
- Some sites may block automated fetching, returning incomplete or empty findings

## How this service works

Base/Solana DEX execution intelligence and website analysis, with a free live token preview and paid reports through x402 in Base USDC.

## Output

A JSON report containing the requested URL, final redirected URL, fetch timestamp, overall risk level (e.g. moderate), a numeric risk score, and component scores for security, AI readiness, and accessibility, plus an array of prioritized findings.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "format": "uri",
   "pattern": "^https?://",
   "description": "Absolute public HTTP or HTTPS URL to analyze"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "schema": {
  "type": "object",
  "required": [
   "reportType",
   "requestedUrl",
   "fetchedAt"
  ],
  "properties": {
   "finalUrl": {
    "type": "string"
   },
   "fetchedAt": {
    "type": "string"
   },
   "reportType": {
    "type": "string"
   },
   "requestedUrl": {
    "type": "string"
   }
  },
  "additionalProperties": true
 },
 "example": {
  "sample": true,
  "finalUrl": "https://example.com/",
  "fetchedAt": "2026-08-10T00:00:00.000Z",
  "riskLevel": "moderate",
  "riskScore": 34,
  "reportType": "technical-risk-snapshot-v1",
  "requestedUrl": "https://example.com/",
  "componentScores": {
   "security": 40,
   "aiReadiness": 65,
   "accessibility": 86
  },
  "prioritizedFindings": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ai-utility-farm-technical-risk-analysis-c336a75f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ai-utility-farm.brycedees1.chatgpt.site](https://www.zero.xyz/host/ai-utility-farm.brycedees1.chatgpt.site/llms.txt)
