# 1XU Trade Proof Verification

> 1XU Trade Proof Verification is a paid API for AI agents from x402.1xu.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves on-chain verification proof for a specific 1XU prediction market trade by trade ID, confirming its authenticity on the Base blockchain.

## Facts

- Endpoint: GET https://x402.1xu.app/api/proof/%7Btrade_id%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/1xu-trade-proof-verification-db70114b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OUDbRdaMtznlqrmkcpJU4

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 1xu-trade-proof-verification-db70114b
```

Example prompt: Can you verify whether 1XU trade BOT1-1711234567-1234 is confirmed on-chain and get me the Basescan link and transaction hash?

## When to prefer this

Use this endpoint when you need to independently verify that a specific 1XU prediction market trade signal was actually executed and recorded on the Base blockchain, rather than just trusting a claimed track record. Ideal for auditing, due diligence, or confirming a trade proof before acting on signal performance claims.

## Known failure modes

- Trade ID not found — returns unverified or empty result
- Malformed trade ID format causes query failure
- Base network RPC issues may delay or fail proof retrieval
- Payment of $0.01 USDC not received — request rejected with 402

## How this service works

The first AI signal intelligence layer for prediction markets. $675K+ verified track record from $10K. 56,000+ AI-graded trades across 300+ markets. AI-powered algo signals 24/7. 953 on-chain proofs. Not financial advice.

## Output

Returns a JSON object containing the trade ID, a boolean indicating whether the trade is verified on-chain, the Base blockchain transaction hash, a Basescan URL to view the transaction, and the block number at which it was recorded.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "required": [
      "trade_id"
     ],
     "properties": {
      "trade_id": {
       "type": "string",
       "description": "The unique trade/position ID to verify on-chain (e.g. BOT1-1711234567-1234)"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "required": [
      "trade_id",
      "verified"
     ],
     "properties": {
      "tx_hash": {
       "type": "string",
       "description": "Transaction hash on Base"
      },
      "trade_id": {
       "type": "string",
       "description": "Trade identifier"
      },
      "verified": {
       "type": "boolean",
       "description": "Whether the trade is verified on-chain"
      },
      "basescan_url": {
       "type": "string",
       "description": "Link to view on Basescan"
      },
      "block_number": {
       "type": "integer",
       "description": "Block number"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/1xu-trade-proof-verification-db70114b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.1xu.app](https://www.zero.xyz/host/x402.1xu.app/llms.txt)
