# Twzrd Agent Trust Intelligence

> Twzrd Agent Trust Intelligence is a paid API for AI agents from intel.twzrd.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns trust/intelligence data for a given Solana wallet public key, useful for assessing agent or account reputation on-chain

## Facts

- Endpoint: POST https://intel.twzrd.xyz/v1/intel/trust/:pubkey
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/twzrd-agent-trust-intelligence-f0f4f987
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CIqRsiGQmPQMpkPgfMzuP

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 twzrd-agent-trust-intelligence-f0f4f987 -d '<json body>'
```

Example prompt: Can you check the trust intelligence score for this Solana wallet address: 4Nd1mBQtrMJVYVfKf2PX98HegncwXQ2H1PHfT8GzFBpk — I want to know if this agent or account is trustworthy before I interact with it.

## When to prefer this

Use this endpoint when you need to assess the trustworthiness or reputation of a specific Solana wallet or agent address before initiating a transaction, interaction, or delegation. Prefer this over generic blockchain explorers when you need a pre-computed trust or intelligence score rather than raw transaction history.

## Known failure modes

- Invalid or malformed public key returns an error
- Unknown pubkey with no on-chain history may return empty or minimal intelligence
- Payment failure via x402 results in 402 response and no data
- Rate limiting may apply if called too frequently
- Network or RPC errors on the Solana side may cause timeouts

## Output

Returns trust and intelligence data about the specified Solana wallet or agent public key, likely including reputation signals, trust scores, or behavioral intelligence derived from on-chain activity. Costs 0.05 USDC per call via x402 payment on Solana mainnet.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/twzrd-agent-trust-intelligence-f0f4f987/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.twzrd.xyz](https://www.zero.xyz/host/intel.twzrd.xyz/llms.txt)
