# TWZRD Intel Trust Receipt

> TWZRD Intel Trust Receipt 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-14).

Returns a signed V6 trust/reputation profile for a Solana address, including score, payment history, and counterparty risk assessment, for 0.05 USDC via x402.

## Facts

- Endpoint: GET https://intel.twzrd.xyz/v1/intel/trust/:solana_address
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/twzrd-intel-trust-receipt-79ac6182
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_L7hUwij1WgYgoN8yUvgIH

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-intel-trust-receipt-79ac6182
```

Example prompt: Before I pay this Solana address 9x4Yz...Abc, pull their trust receipt from TWZRD Intel — I need to know their reputation score and payment history to decide if it's safe.

## When to prefer this

Use this endpoint when an AI agent or user needs a cryptographically signed, paid trust receipt for a specific Solana address before executing a payment or transaction — particularly in x402 agent-to-agent payment flows where counterparty verification is critical. Prefer this over the free preflight endpoint (/v1/intel/preflight) when you need a verified, signed proof of trust rather than a quick preliminary check.

## Known failure modes

- Invalid or malformed Solana address returns 400 error
- Unknown address with no history returns empty or low-confidence profile
- Payment failure (insufficient USDC or x402 protocol error) blocks the response
- Network or RPC issues on Solana mainnet cause timeouts
- Address with no transaction history returns minimal trust data

## How this service works

Pre-payment guard for x402 agents: free POST /v1/intel/preflight before spending, paid signed V7 trust receipt after. Evaluate any counterparty BEFORE paying — 0.05 USDC buys the proof (Solana mainnet). POST /v1/intel/preflight is free, no auth.

## Output

A signed V6 trust receipt containing a trust/reputation score, historical payment data, counterparty risk indicators, and merchant track record for the queried Solana address.

## 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",
      "POST",
      "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-intel-trust-receipt-79ac6182/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)
