# Ozmium Trading Scorecard API

> Ozmium Trading Scorecard API is a paid API for AI agents from ozmium.org, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns an aggregate trading scorecard for a Base address from its closed leverage position history, including win rate, profit factor, R-multiple expectancy, and other performance metrics.

## Facts

- Endpoint: GET https://ozmium.org/v1/stats/:address
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ozmium-trading-scorecard-api-028ad2db
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jHivUKeUU8gAQ4-f5Xjbq

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 ozmium-trading-scorecard-api-028ad2db
```

Example prompt: Pull up the full trading scorecard for Base address 0xAbC...123 — I want to see my win rate, profit factor, and R-multiple expectancy from all my closed leverage positions.

## When to prefer this

Use this endpoint when you need a comprehensive, aggregated trading performance scorecard for a specific Base wallet address derived from its closed leverage history. Ideal for risk-sizing agents, portfolio reviews, or self-assessment of trading edge. Prefer this over raw transaction queries when you need computed metrics like profit factor or R-multiple expectancy without doing the math yourself.

## Known failure modes

- Invalid or malformed Base address returns a 400 error
- Address with no closed leverage history returns zeroed or empty stats
- Payment not included or insufficient USDC results in 402 Payment Required
- Address on a non-Base network may return no data or an error
- Network congestion or chain data lag may cause stale or incomplete stats

## How this service works

Aggregate trading scorecard for any Base address from its closed leverage history: trades, wins/losses, win rate, net USD, gross profit / loss, profit factor, mean R-multiple expectancy, avg win / loss, best / worst trade. GET /v1/stats/{address}. The "am I actually good" read- and the input to a risk-sizing agent.

## Output

A JSON object containing the wallet address, total trade count, wins and losses, win rate (0–1), net USD PnL, gross profit, gross loss, profit factor, mean R-multiple expectancy, average win size, average loss size, best trade, and worst trade — all derived from the address's closed leverage position history on Base.

## 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"
    },
    "pathParams": {
     "type": "object",
     "properties": {
      "address": {
       "type": "string"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "type": "object",
       "properties": {
        "trades": {
         "type": "number"
        },
        "address": {
         "type": "string"
        },
        "winRate": {
         "type": "number"
        },
        "profitFactor": {
         "type": "number"
        }
       }
      },
      "network": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ozmium-trading-scorecard-api-028ad2db/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ozmium.org](https://www.zero.xyz/host/ozmium.org/llms.txt)
