# Kallipolis Proof — Deep Resolve Evidence API

> Kallipolis Proof — Deep Resolve Evidence API is a paid API for AI agents from kallipolis-proof.handongzhen101.chatgpt.site, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-16).

Resolves evidence and trust signals for a public HTTPS domain or Base blockchain address, returning a verdict, confidence score, and supporting findings.

## Facts

- Endpoint: POST https://kallipolis-proof.handongzhen101.chatgpt.site/api/v1/deep-resolve
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kallipolis-proof-deep-resolve-evidence-api-b9b22e83
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W6IhwaihsK6h-KcXarK6X

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 kallipolis-proof-deep-resolve-evidence-api-b9b22e83 -d '<json body>'
```

Example prompt: Can you deep-resolve the trust evidence for 'uniswap.org' and tell me the verdict and confidence score — I want to know if it's safe for my agent to interact with it.

## When to prefer this

Use this endpoint when an AI agent needs a structured, evidence-backed trust verdict for a domain or Base address before interacting with it — especially in Web3 or agentic workflows where autonomous agents must assess counterparty credibility. Prefer this over generic WHOIS or DNS lookup tools when you need a synthesized confidence score and labeled findings rather than raw records.

## Known failure modes

- Invalid or non-public domain returns error or low-confidence result
- Malformed Base address rejected with validation error
- Unresolvable or newly registered domain may return low confidence with sparse signals
- Payment failure via x402 results in 402 response and no evidence returned
- Rate limiting or quota exhaustion may return 429 error

## How this service works

Evidence resolution API for AI agents, domains, protocols, and Base accounts. Pay per call with x402 or buy instant prepaid access.

## Output

A JSON object containing a verdict string (e.g. 'verified'), a confidence score between 0 and 1, an array of signals with supporting detail, an array of findings, and a targetType indicating whether the query was resolved as a domain or Base address.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "query"
     ],
     "properties": {
      "query": {
       "type": "string",
       "description": "Public HTTPS domain or Base address"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "const": "POST"
    },
    "bodyType": {
     "type": "string",
     "const": "json"
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object",
     "properties": {
      "signals": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "verdict": {
       "type": "string"
      },
      "findings": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "confidence": {
       "type": "number",
       "maximum": 1,
       "minimum": 0
      },
      "targetType": {
       "enum": [
        "domain",
        "base-address"
       ],
       "type": "string"
      },
      "x402Readiness": {
       "type": "object",
       "required": [
        "status",
        "level",
        "paymentAttempted",
        "settlement"
       ],
       "properties": {
        "level": {
         "enum": [
          "settlement-verified",
          "challenge-ready",
          "discovery-ready",
          "not-ready",
          "unknown",
          "not-applicable"
         ],
         "type": "string"
        },
        "status": {
         "enum": [
          "ready",
          "partial",
          "not-ready",
          "unknown",
          "not-applicable"
         ],
         "type": "string"
        },
        "settlement": {
         "enum": [
          "not-tested",
          "verified"
         ],
         "type": "string"
        },
        "paymentAttempted": {
         "type": "boolean"
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "signals": [],
  "verdict": "verified",
  "findings": [],
  "confidence": 0.85,
  "targetType": "domain"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kallipolis-proof-deep-resolve-evidence-api-b9b22e83/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from kallipolis-proof.handongzhen101.chatgpt.site](https://www.zero.xyz/host/kallipolis-proof.handongzhen101.chatgpt.site/llms.txt)
