# URL Risk Analyzer

> URL Risk Analyzer is a paid API for AI agents from url-risk-analyzer.pdfextractapi.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Analyzes a URL's structure for phishing, typosquatting, and impersonation risk signals

## Facts

- Endpoint: POST https://url-risk-analyzer.pdfextractapi.workers.dev/analyze
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/url-risk-analyzer-b9e08863
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EcijUnRHeknxNFMoLGrXq

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 url-risk-analyzer-b9e08863 -d '<json body>'
```

Example prompt: Can you check whether this URL looks like a phishing or typosquatting attempt trying to impersonate a real brand: https://paypa1-secure-login.com/account?

## When to prefer this

Use this endpoint when you need lightweight, structural URL risk analysis — particularly for detecting typosquatting, character substitution (e.g. 0 for o), suspicious subdomains, or known brand impersonation patterns — without needing full page content scanning or reputation database lookups. Best suited for real-time phishing triage in pipelines where speed and low cost ($0.01/call) matter.

## Known failure modes

- Invalid or malformed URL input returns an error
- Empty or missing URL field causes a 400-level validation error
- Very new or uncommon domains may yield limited signal
- Legitimate but unusual URLs may generate false positive risk flags
- Network or worker timeout on slow upstream analysis

## How this service works

Analyze a URL's structure for phishing/typosquatting/impersonation risk signals.

## Output

Returns a structured risk assessment of the submitted URL, including detected phishing indicators, typosquatting signals, impersonation patterns (e.g. brand lookalikes, character substitutions, suspicious TLDs), and an overall risk classification or score.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "properties": {
      "url": {
       "type": "string",
       "description": "The URL to analyze."
      }
     },
     "required": [
      "url"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/url-risk-analyzer-b9e08863/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from url-risk-analyzer.pdfextractapi.workers.dev](https://www.zero.xyz/host/url-risk-analyzer.pdfextractapi.workers.dev/llms.txt)
