# 54ch10 Pre-Interact Brief

> 54ch10 Pre-Interact Brief is a paid API for AI agents from 54ch10.uk, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a phishing, scam, wallet-risk, honeypot, and URL-reputation brief for a given wallet address, token, or URL before interacting with it

## Facts

- Endpoint: GET https://54ch10.uk/v1/brief
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/54ch10-pre-interact-brief-7efd5216
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Bly02FxFCeDgIUhYQOCn5

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 54ch10-pre-interact-brief-7efd5216
```

Example prompt: Before I connect my wallet to this site, can you run a quick 54ch10 pre-interact brief on https://defi-airdrop-claim.xyz to check for phishing, scam signals, and URL reputation issues?

## When to prefer this

Choose this endpoint when an AI agent needs a fast, pre-interaction safety signal about a crypto wallet, token contract, or Web3 URL before a user sends funds, connects a wallet, or approves a transaction. It aggregates multiple live threat-intel sources (phishing feeds, on-chain honeypot detectors) into a single risk band and score, making it ideal for agent-side guardrails in DeFi, NFT, and Web3 workflows. Prefer it over generic URL-reputation APIs when blockchain-specific risk signals (honeypot detection, wallet fraud history) are needed.

## Known failure modes

- Invalid or unrecognized query format returns an error or empty result
- Rate limiting or payment failure (x402 payment required) blocks the request
- Source APIs (e.g. OpenPhish) may be temporarily unavailable, reducing coverage
- Novel phishing domains not yet indexed by live sources may return a false 'clear' band
- Token or wallet not found in on-chain risk databases returns limited signal

## How this service works

54ch10: pre-interact URL check. Paste a link, get brief + domain + page. Taste /v1/open/free. 80 calls for $1. Wire in 30s. Analytics-only tooling. Not financial advice.

## Output

A JSON object with an ok boolean indicating safety, a risk band (e.g. 'clear', 'caution', 'danger'), a numeric risk score, the entity type detected (url/wallet/token), a list of flags raised, a list of data sources checked with their live status, and a plain-English summary of findings. Includes a disclaimer that results are informational only and not financial advice.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "queryParams": {
     "type": "object",
     "required": [
      "type",
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Address, token id/symbol, or URL"
      },
      "type": {
       "enum": [
        "address",
        "token",
        "url"
       ],
       "type": "string",
       "description": "What to brief"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "q": "https://example.com",
  "ok": true,
  "band": "clear",
  "tier": "x402",
  "type": "url",
  "flags": [],
  "score": 12,
  "sources": [
   {
    "id": "openphish",
    "label": "OpenPhish",
    "status": "live"
   }
  ],
  "summary": "No elevated phishing or on-chain risk signals in free live sources.",
  "disclaimer": "Informational tooling only. Not financial advice. No custody, trading, or token promotion."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/54ch10-pre-interact-brief-7efd5216/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 54ch10.uk](https://www.zero.xyz/host/54ch10.uk/llms.txt)
