# TWZRD Merchant Intelligence

> TWZRD Merchant 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-13).

Returns reputation and demand-quality intel for a Solana merchant address, including track record, wash-risk labeling, and a signed payment receipt.

## Facts

- Endpoint: POST https://intel.twzrd.xyz/v1/intel/merchant/:solana_address
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/twzrd-merchant-intelligence-504abc34
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2mGlMtFPMFK8Kruola1eF

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-merchant-intelligence-504abc34 -d '<json body>'
```

Example prompt: Can you check the reputation and wash-risk status of this Solana merchant address: 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU — I want to know if they have a solid track record before I send a payment.

## When to prefer this

Use this endpoint when you need merchant-specific reputation intelligence on Solana, particularly wash-risk labeling and settlement history. Prefer over generic address lookups when evaluating counterparty quality before a payment or trade. Best suited for agent workflows that gate transactions on merchant trust scores.

## Known failure modes

- Invalid or malformed Solana address returns a 400 error
- Address not found on-chain or with no history may return empty or low-confidence scores
- Payment of 0.05 USDC not fulfilled results in 402 Payment Required
- Network or RPC errors on Solana may cause intermittent 503 responses
- Rate limiting may occur for high-frequency callers

## How this service works

Returns reputation and demand-quality intel for a Solana merchant address, including merchant track record, wash-risk labeling, and a signed payment receipt. Useful for evaluating merchant quality and settlement history.

## Output

Returns a structured intelligence profile for the merchant including reputation score, tier, wash-risk label, settlement/payment history, and a signed payment receipt confirming the query was processed.

## 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-merchant-intelligence-504abc34/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)
