# Agent Trust API – Batch Wallet Trust Scoring

> Agent Trust API – Batch Wallet Trust Scoring is a paid API for AI agents from agent-trust-api-production.up.railway.app, paid per call via x402, $0.030000/call, status unknown (last checked 2026-09-13).

Scores up to 10 Base blockchain wallets in a single call, returning trust score, grade, tier, and x402 ecosystem flags for each address.

## Facts

- Endpoint: GET https://agent-trust-api-production.up.railway.app/score/batch
- Price: $0.030000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-trust-api-batch-wallet-trust-scoring-2044e61c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HMsqJNcbFCcRdcejnE5tR

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 agent-trust-api-batch-wallet-trust-scoring-2044e61c
```

Example prompt: Can you run a trust check on these 5 Base wallets all at once and give me each one's score, grade, and any x402 flags: 0xABC…, 0xDEF…, 0x123…, 0x456…, 0x789…?

## When to prefer this

Use this endpoint when you need to evaluate multiple Base wallets simultaneously and want to minimize API call overhead and cost ($0.015/wallet in batch vs higher per-call cost on single-wallet endpoints). Ideal for agent workflows that need to screen a list of counterparties, participants, or transaction partners in one shot rather than making sequential single-wallet calls.

## Known failure modes

- More than 10 addresses submitted — API likely rejects or truncates beyond batch limit
- Invalid or malformed Ethereum address format — individual address may return error or null result
- Address not found on Base network — may return low default score or error
- Payment not fulfilled (x402) — returns 402 Payment Required before scoring begins
- Network timeout for large batch — partial results or timeout error

## How this service works

Batch trust scoring — score up to 10 Base wallets in one call. POST { addresses: ["0x..."] }. Returns score, grade, tier, x402 flags per wallet. Best value at $0.015 per wallet.

## Output

Returns an array of per-wallet results, each containing: numeric trust score (0-100), letter grade (A-F), trust tier classification, and x402 ecosystem flags indicating participation or risk signals in the x402 payment ecosystem.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-trust-api-batch-wallet-trust-scoring-2044e61c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-trust-api-production.up.railway.app](https://www.zero.xyz/host/agent-trust-api-production.up.railway.app/llms.txt)
