# 54ch10 DNS Reputation Lookup

> 54ch10 DNS Reputation Lookup is a paid API for AI agents from 54ch10.uk, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Looks up DNS records and reputation flags for a domain name to support pre-interaction security checks

## Facts

- Endpoint: GET https://54ch10.uk/v1/dns
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/54ch10-dns-reputation-lookup-0e6d73c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cZQKW3hxaAqMLiS-9i9oc

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-dns-reputation-lookup-0e6d73c2
```

Example prompt: Can you run a DNS reputation check on 'suspicious-airdrop.xyz' and tell me if it's been flagged for phishing or anything sketchy before I click on it?

## When to prefer this

Use this endpoint when an agent needs a quick, low-cost DNS resolution plus basic phishing/scam reputation check on a domain before a user interacts with a URL, DeFi protocol, or web service. Prefer this over generic DNS tools when you specifically need risk-flag context (phishing, honeypot, scam indicators) alongside resolution results. Best suited for pre-interaction safety screening in crypto, Web3, or general browsing contexts.

## Known failure modes

- Domain not found or unresolvable — ok may be false with empty A records
- Domain provided in invalid format — may return validation error
- No flags returned even for risky domains — heuristic scoring is imperfect and may miss novel threats
- Rate limits or payment failures — endpoint requires x402 micropayment of $0.002 USDC per call
- Empty flags array does not guarantee safety — must verify independently

## 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

Returns an object containing DNS A records for the domain, an 'ok' boolean indicating successful resolution, a 'tier' field (e.g. 'x402'), a 'flags' array listing any detected risk signals (phishing, scam, honeypot, etc.), the queried domain name, and a disclaimer that results are informational heuristics only.

## 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": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string",
       "description": "Domain name"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "a": [
   "93.184.216.34"
  ],
  "ok": true,
  "tier": "x402",
  "flags": [],
  "domain": "example.com",
  "disclaimer": "Informational tooling only. Not financial advice. No custody, trading, or token promotion. Scores are imperfect heuristics — verify independently."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/54ch10-dns-reputation-lookup-0e6d73c2/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)
