# AsterPay Quick KYA Trust Score

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

Returns a quick Know-Your-Agent (KYA) trust score (0-100), tier classification, and sanctions status for any AI agent or crypto wallet address.

## Facts

- Endpoint: GET https://x402.asterpay.io/v2/x402/agent/trust-score/:address
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/asterpay-quick-kya-trust-score-ac1122c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OeMHpAIWT_dpxG_nxWvhc

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-quick-kya-trust-score-ac1122c2
```

Example prompt: Can you run a quick KYA trust score check on wallet address 0xd5f8481D8F25d3966d2010DBf9B47fFbdf745A9E and tell me its score, tier, and whether it's sanctioned?

## When to prefer this

Use this endpoint when you need a fast, lightweight KYA trust check on a single wallet or AI agent address — e.g. before initiating a payment or interaction — and do not need the full 7-component deep analysis. It is cheaper ($0.005 USDC) and faster than the deep analysis sibling endpoint, making it ideal for high-frequency screening or quick pre-flight checks.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Address not found or unrecognized returns low/zero score
- Payment failure (x402 USDC payment not processed) blocks response
- Network timeout or service unavailability
- Rate limiting if too many requests in a short window

## How this service works

Quick KYA Trust Score for any AI agent wallet. Returns score (0-100), tier, and sanctions status. Paid via x402 USDC.

## Output

A JSON object containing the queried wallet address, a numeric trust score from 0 to 100, a tier label (e.g. 'trusted'), a boolean sanctions flag, and optionally an ERC-8004 registration status.

## 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"
  ],
  "properties": {
   "tier": {
    "type": "string"
   },
   "address": {
    "type": "string"
   },
   "sanctioned": {
    "type": "boolean"
   },
   "trustScore": {
    "type": "number",
    "maximum": 100,
    "minimum": 0
   }
  }
 },
 "example": {
  "tier": "trusted",
  "address": "0xd5f8481D8F25d3966d2010DBf9B47fFbdf745A9E",
  "sanctioned": false,
  "trustScore": 63,
  "erc8004Registered": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/asterpay-quick-kya-trust-score-ac1122c2/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)
