# Onchain Address Trust Score

> Onchain Address Trust Score is a paid API for AI agents from x402-secure-api.t54.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Evaluates a blockchain payment address for reputation, transaction history, risk patterns (mixing, scams), and returns a trust/risk score

## Facts

- Endpoint: POST https://x402-secure-api.t54.ai/x402/tools/get_onchain_trust
- 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/x402-secure-api-t54-ai-12874efa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5oyQXNFA6h3Y-Iqjcky_1

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 x402-secure-api-t54-ai-12874efa -d '<json body>'
```

Example prompt: Can you check whether this Ethereum address 0x742d35Cc6634C0532925a3b844Bc454e4438f44e is safe to interact with — I want to know its trust score, any scam or mixing associations, and overall risk level before I send funds.

## When to prefer this

Choose this endpoint when you need to assess the trustworthiness and risk profile of a specific blockchain wallet or payment address before initiating a transaction, especially when fraud detection, scam association checks, or mixing pattern analysis are required. It is particularly suited for x402-enabled agentic payment flows where automated due diligence on counterparty addresses is needed at low cost ($0.01 USDC per call).

## Known failure modes

- Invalid or malformed blockchain address returns a validation error
- Unsupported blockchain network returns an unsupported network error
- Address with no transaction history may return limited scoring data
- Payment failure (insufficient USDC) results in 402 Payment Required
- Service downtime returns 503 or health-check failure
- Rate limiting may return 429 Too Many Requests

## How this service works

Payment for x402 security evaluation tool ($0.01)

## Output

Returns an address reputation score (numeric trust/risk rating), detected suspicious patterns such as mixing or scam associations, relevant transaction history signals, and a risk classification indicating whether the address is safe or flagged.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "url": "string",
 "status": {
  "type": "string"
 },
 "result_data": "object|null",
 "server_name": "string",
 "payto_address": "string|null",
 "last_validated": "string|null",
 "onchain_risk_indicators": "object|null"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-secure-api-t54-ai-12874efa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-secure-api.t54.ai](https://www.zero.xyz/host/x402-secure-api.t54.ai/llms.txt)
