# AsterPay Deep KYA Batch Trust Analysis

> AsterPay Deep KYA Batch Trust 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-15).

Returns deep multi-component KYA (Know Your Agent) trust scores, tier classification, and sanctions status for one or more AI agent wallet addresses in a single batch call

## Facts

- Endpoint: GET https://x402.asterpay.io/v1/agent/deep-analysis/batch
- 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/asterpay-deep-kya-batch-trust-analysis-162ef062
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Cq8VrJOxcF1FdbIpgwTw4

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-batch-trust-analysis-162ef062
```

Example prompt: Run a deep KYA trust analysis on wallet address 0xd5f8481D8F25d3966d2010DBf9B47fFbdf745A9E — I need the full 7-component trust score, tier classification, and sanctions status before I authorize any payments to it.

## When to prefer this

Choose this endpoint when you need a comprehensive, multi-component trust analysis rather than a quick single-score lookup — especially for batch evaluation of multiple agent wallets before authorizing payments or entering into automated commerce agreements. Prefer this over the quick KYA endpoint when you need the full 7-component breakdown and detailed risk assessment.

## Known failure modes

- Missing required 'address' query parameter returns a 400 validation error
- Invalid or malformed wallet address format returns an error or empty result set
- Payment not provided or insufficient USDC triggers a 402 Payment Required response
- Rate limiting or quota exceeded returns a 429 error
- Unresolvable address or address with no on-chain history may return a low or null trust score

## 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 a count, timestamp, and an array of results per queried address. Each result includes: the wallet address, a trust score (0-100), a trust tier label (e.g. 'trusted'), and a boolean sanctions flag. The deep analysis variant provides a 7-component breakdown of the 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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "schema": {
  "type": "object",
  "required": [
   "address",
   "trustScore",
   "tier",
   "sanctioned"
  ],
  "properties": {
   "tier": {
    "enum": [
     "open",
     "verified",
     "trusted",
     "enterprise"
    ],
    "type": "string"
   },
   "address": {
    "type": "string"
   },
   "sanctioned": {
    "type": "boolean"
   },
   "trustScore": {
    "type": "number",
    "maximum": 100,
    "minimum": 0
   },
   "erc8004Registered": {
    "type": "boolean"
   },
   "settlementEligible": {
    "type": "boolean"
   }
  }
 },
 "example": {
  "tier": "trusted",
  "address": "0xd5f8481D8F25d3966d2010DBf9B47fFbdf745A9E",
  "timestamp": "2026-04-15T12:00:00Z",
  "components": {
   "trustBond": 6,
   "walletAge": 12,
   "operatorKyb": 0,
   "paymentHistory": 5,
   "erc8004Identity": 15,
   "sanctionsScreening": 15,
   "transactionActivity": 10
  },
  "sanctioned": false,
  "trustScore": 63,
  "erc8004Registered": true,
  "insumerAttestation": {
   "coinbaseKyc": {
    "met": true
   },
   "tokenBalance": {
    "met": true,
    "usdcBalance": 142
   },
   "coinbaseCountry": {
    "met": true,
    "value": "US"
   },
   "gitcoinPassport": {
    "met": true,
    "score": 22
   }
  },
  "settlementEligible": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/asterpay-deep-kya-batch-trust-analysis-162ef062/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)
