Pre-payment guard for x402 agents: free POST /v1/intel/preflight before spending, paid sig
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.
50000 (raw units)
price
4
calls / 30d
3
unique payers
2026-09-12
updated
Provider
intel.twzrd.xyz · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "GFpLvocNdEjnSsLH3VJQL6wGcjGxTbUBrj6fqN3Qe1Gs",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "50000",
"maxTimeoutSeconds": 45
},
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xfB9819456bd9248A9D3c9E12F4cb7bBda5fc2578",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 3600
}
]Output schema
{
"bazaar": {
"exampleUrl": "https://intel.twzrd.xyz/v1/intel/trust/F1AbWuXJcBT9arW9wc6Xr2vom5NBtngWsz6Ht16jRBLM",
"info": {
"input": {
"discoverable": true,
"method": "GET",
"pathParams": {
"solana_address": "Solana wallet address (base58-encoded public key, 43–44 characters)"
},
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"paid": true,
"receipt": {
"leaf": "0x<keccak256 of the preimage>",
"preimage": {
"settlement_tx": "<your on-chain x402 payment>"
},
"signature": "<Ed25519 signature over the leaf>",
"signing_alg": "ed25519",
"version": 7
},
"score": 61.8,
"score_version": "intel_renorm_v1_1"
},
"type": "json"
}
},
"routeTemplate": "/v1/intel/trust/F1AbWuXJcBT9arW9wc6Xr2vom5NBtngWsz6Ht16jRBLM",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"headers": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"method": {
"enum": [
"GET",
"POST",
"HEAD",
"DELETE"
],
"type": "string"
},
"pathParams": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"queryParams": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"twzrd_decision_bind": {
"correlation_id": "6a7b15b6-6d4e-4ac4-9a09-82518c680a8c",
"outcome_attestation": "TWZRD:AO_DECISION_OUTCOME_V1",
"schema": "twzrd.decision_bind.v1"
}
}Use it
curl
curl "https://intel.twzrd.xyz/v1/intel/trust/:solana_address" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://intel.twzrd.xyz/v1/intel/trust/:solana_address");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://intel.twzrd.xyz/v1/intel/trust/:solana_address")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/1308.json, and this resource appears in /discovery/resources and /discovery/search.