# AsterPay Deep KYA Trust Score Analysis

> AsterPay Deep KYA Trust Score Analysis is a paid API for AI agents from x402.asterpay.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a comprehensive 7-component trust score (0-100), risk tier, sanctions status, ERC-8004 identity, InsumerAPI attestations, and payment eligibility for an AI agent or wallet address.

## Facts

- Endpoint: GET https://x402.asterpay.io/v1/agent/deep-analysis/:address
- 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/asterpay-deep-kya-trust-score-analysis-426d74f6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Uhowunene88mIv2NKl7wd

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 asterpay-deep-kya-trust-score-analysis-426d74f6
```

Example prompt: Can you run a deep KYA trust analysis on wallet 0xd5f8481D8F25d3966d2010DBf9B47fFbdf745A9E and tell me its full trust score, risk tier, whether it's sanctioned, and if it's eligible for settlement?

## When to prefer this

Use this endpoint over the quick KYA check when you need detailed trust component breakdown, InsumerAPI attestations (Coinbase KYC, Gitcoin Passport, USDC balance, country), ERC-8004 identity verification, and full settlement eligibility determination. Ideal for compliance-sensitive payment flows, enterprise onboarding, or any scenario requiring audit-grade agent trust documentation rather than a simple pass/fail score.

## Known failure modes

- Invalid or malformed Ethereum address returns 400 error
- Address not found on-chain may return default/minimal trust score
- Sanctions screening service unavailable may delay or block response
- ERC-8004 registry unreachable results in erc8004Registered returning false
- Rate limiting or payment failure (x402) results in 402 Payment Required
- Network timeout for on-chain data lookups

## How this service works

Deep KYA Trust Score analysis for any AI agent or wallet. Returns 7-component trust score (0-100), risk tier, sanctions status, ERC-8004 identity, InsumerAPI attestations, and payment eligibility. The most comprehensive agent trust check available.

## Output

Returns a JSON object with the wallet address, overall trust score (0-100), risk tier (open/verified/trusted/enterprise), sanctions flag, ERC-8004 registration status, settlement eligibility, 7 sub-component scores (trustBond, walletAge, operatorKyb, paymentHistory, erc8004Identity, sanctionsScreening, transactionActivity), and InsumerAPI attestations including Coinbase KYC, USDC balance, country, and Gitcoin Passport score.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/asterpay-deep-kya-trust-score-analysis-426d74f6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.asterpay.io](https://www.zero.xyz/host/x402.asterpay.io/llms.txt)
