# DeepBlue Bot On-Chain Trading Performance

> DeepBlue Bot On-Chain Trading Performance is a paid API for AI agents from api.deepbluebase.xyz, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Returns the DeepBlue autonomous trading bot's on-chain verified performance metrics including P&L, win rate, trade history, and best-performing hours on Polymarket

## Facts

- Endpoint: GET https://api.deepbluebase.xyz/performance
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-deepbluebase-xyz-88b3be21
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jgwtrLznl6OhZ8Ef5pKGr

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 api-deepbluebase-xyz-88b3be21
```

Example prompt: Pull up the DeepBlue bot's on-chain verified trading performance — I want to see its current win rate, total P&L in USDC, and which hours it trades best on Polymarket.

## When to prefer this

Use this endpoint when you need on-chain verifiable trading performance data for the DeepBlue autonomous bot specifically, including auditable Polygonscan links. Prefer this over generic sentiment or signal endpoints when the goal is to evaluate the bot's track record, win rate credibility, or best trading windows before relying on its signals.

## Known failure modes

- Payment not included or insufficient — 402 Payment Required response
- Upstream Polymarket/Polygon data temporarily unavailable — 503 or 500 error
- Rate limiting if called excessively — 429 Too Many Requests
- Stale data if on-chain indexing lags — response may not reflect most recent fills

## How this service works

DeepBlue bot on-chain verified trading performance, P&L, and win rate

## Output

Returns a JSON object with the bot's identity and data source, portfolio stats (wins, losses, win rate, total trades, total P&L in USDC, current wallet balance), a Polygonscan verification URL, calibration details including Kelly-sizing edge strategy, best-performing hours by UTC with PnL and win rate, and a list of recent individual trades with coin, direction, result, fill price, PnL, and timestamp.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "win_rate": {
       "type": "number"
      },
      "total_pnl": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-deepbluebase-xyz-88b3be21/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.deepbluebase.xyz](https://www.zero.xyz/host/api.deepbluebase.xyz/llms.txt)
