# Maiat Protocol Trust Score Lookup

> Maiat Protocol Trust Score Lookup is a paid API for AI agents from app.maiat.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Looks up the on-chain trust score, completion rate, and verdict for an Ethereum address representing an AI agent or token

## Facts

- Endpoint: GET https://app.maiat.io/api/x402/trust
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/maiat-protocol-trust-score-lookup-a92f1fa0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_a03zKO402Ua9qzI17QzAo

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 maiat-protocol-trust-score-lookup-a92f1fa0
```

Example prompt: Before we hire that autonomous agent, can you check its Maiat trust score for the address 0x4a9f...3b2c and tell me if the verdict is safe to proceed?

## When to prefer this

Use this endpoint when you need to verify the on-chain reputation of an autonomous AI agent or token before delegating work or making payments to it, especially within ACP (Agent Commerce Protocol) ecosystems. Prefer this over generic identity lookups when you specifically need job-completion history and a trust verdict tied to an Ethereum address.

## Known failure modes

- Invalid or malformed Ethereum address returns an error or empty result
- Unknown address with no on-chain history may return a low/null trust score
- Network or blockchain node unavailability causes timeout or 5xx error
- Payment of $0.02 USDC not fulfilled causes 402 Payment Required response

## How this service works

The decentralized truth layer. Verifying the future of autonomous agents and trust.

## Output

Returns a JSON object with a human-readable summary (e.g. 'Reliable ACP agent — 42 jobs, 95% completion'), a verdict ('proceed' or similar), total jobs completed, a numeric trust score (0-100), and a completion rate (0-1 float).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "address": {
   "type": "string",
   "description": "Ethereum address (agent or token)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "summary": "Reliable ACP agent â 42 jobs, 95% completion",
  "verdict": "proceed",
  "totalJobs": 42,
  "trustScore": 85,
  "completionRate": 0.95
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/maiat-protocol-trust-score-lookup-a92f1fa0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from app.maiat.io](https://www.zero.xyz/host/app.maiat.io/llms.txt)
