# InsumerAPI Wallet Trust Profile

> InsumerAPI Wallet Trust Profile is a paid API for AI agents from api.insumermodel.com, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Runs up to 49 presence-based trust checks across 27 chains for a given wallet, covering stablecoins, governance, NFTs, staking, and institutional dimensions — no score, just raw evidence.

## Facts

- Endpoint: POST https://api.insumermodel.com/v1/trust
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/insumerapi-wallet-trust-profile-f3ed41a5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XQK3tYIAjPF87Az5dfH1D

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 insumerapi-wallet-trust-profile-f3ed41a5 -d '<json body>'
```

Example prompt: Before I send funds, can you run a trust profile on the wallet 0xAbC123...4567 — check its presence across stablecoins, governance, NFTs, staking, and institutional dimensions across all supported chains?

## When to prefer this

Use this endpoint when an agent needs objective, evidence-based on-chain due diligence on a counterparty wallet before executing a transaction. It is uniquely suited for multi-chain, multi-dimension presence profiling (stablecoins, governance, NFTs, staking, institutional) with no opinionated scoring — giving the agent raw facts to reason over. Prefer it over simple balance lookups or single-chain explorers when cross-chain trust signals matter, and over scored risk APIs when unbiased evidence is required.

## Known failure modes

- Invalid or malformed wallet address returns an error with no profile
- Wallet with zero on-chain activity returns empty presence checks for all dimensions
- Unsupported chain or wallet format may return partial results
- Merkle proof option doubles cost and may increase latency
- Payment failure via x402 protocol results in 402 response with no profile returned

## How this service works

Signed wallet trust fact profile (ECDSA plus a post-quantum ML-DSA-65 companion): presence checks across stablecoins, governance, NFTs, staking and institutional dimensions, up to 49 checks on 27 chains. Evidence organized by dimension, no score, no opinion. Vet a counterparty wallet before an agent transacts. Pay in USDC on Base, Polygon, Arbitrum, or Solana.

## Output

A structured trust fact profile organized by dimension (stablecoins, governance, NFTs, staking, institutional), showing binary presence checks for each of up to 49 checks across 27 chains. No composite score or opinion is generated — only raw on-chain evidence. Optionally includes Merkle proofs for each check if requested.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "proof": {
   "enum": [
    "merkle"
   ],
   "type": "string",
   "description": "Optional Merkle proofs; doubles the price"
  },
  "wallet": {
   "type": "string",
   "description": "EVM address (0x…)"
  },
  "suiWallet": {
   "type": "string"
  },
  "tronWallet": {
   "type": "string"
  },
  "xrplWallet": {
   "type": "string"
  },
  "solanaWallet": {
   "type": "string"
  },
  "bitcoinWallet": {
   "type": "string"
  },
  "stellarWallet": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "kid": "insumer-attest-v2",
   "sig": "…",
   "profile": {
    "summary": {},
    "dimensions": {}
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/insumerapi-wallet-trust-profile-f3ed41a5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.insumermodel.com](https://www.zero.xyz/host/api.insumermodel.com/llms.txt)
