# 1XU Track Record API

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

Returns verified performance metrics and P&L statistics for 1XU's AI-powered prediction market trading signals over a specified time period

## Facts

- Endpoint: GET https://x402.1xu.app/api/track-record
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/1xu-track-record-api-2426f8ce
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_frH4MxFM8ljKalEBmUpOv

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-track-record-api-2426f8ce
```

Example prompt: Can you pull up 1XU's verified prediction market signal track record for the last 30 days — I want to see the win rate, total P&L, and how many on-chain proofs they have?

## When to prefer this

Use this endpoint when you need to verify or display 1XU's historical AI signal performance for prediction markets, especially when on-chain proof count and verified P&L are required. Prefer this over generic market data endpoints when the user specifically wants auditable, blockchain-verified trading track records for prediction market signals.

## Known failure modes

- Invalid period value (not one of 7d, 30d, 90d, all) returns a 400 error
- Payment not included or insufficient USDC results in 402 Payment Required
- Service unavailable or data not refreshed returns 503
- Network timeout if on-chain verification layer is slow to respond

## 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 requested time period, total P&L in USD, win rate as a decimal (0-1), total number of trades executed, count of on-chain proofs, and percentage of positive trading days — all covering the specified period (7d, 30d, 90d, or all-time).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "properties": {
      "period": {
       "enum": [
        "7d",
        "30d",
        "90d",
        "all"
       ],
       "type": "string",
       "description": "Performance period to retrieve"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "required": [
      "period",
      "total_pnl_usd",
      "win_rate"
     ],
     "properties": {
      "period": {
       "type": "string",
       "description": "Time period for metrics"
      },
      "win_rate": {
       "type": "number",
       "description": "Win rate as decimal (0-1)"
      },
      "total_trades": {
       "type": "integer",
       "description": "Total number of trades"
      },
      "total_pnl_usd": {
       "type": "number",
       "description": "Total P&L in USD"
      },
      "on_chain_proofs": {
       "type": "integer",
       "description": "Number of on-chain proofs"
      },
      "positive_days_pct": {
       "type": "number",
       "description": "Percentage of positive days"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/1xu-track-record-api-2426f8ce/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)
