# DeepBlue Polymarket Bot Analytics

> DeepBlue Polymarket Bot Analytics 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 prediction market analytics for the DeepBlue Polymarket bot: active positions, per-coin win rates, PnL by coin and hour, and edge analysis

## Facts

- Endpoint: GET https://api.deepbluebase.xyz/polymarket
- 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-924e065c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_f5pMDnh11mucLsq9SJt0H

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-924e065c
```

Example prompt: Pull the latest DeepBlue Polymarket bot stats — I want to see the overall win rate, per-coin PnL breakdown, and which hours of the day have been most profitable.

## When to prefer this

Choose this endpoint when you need a comprehensive snapshot of the DeepBlue Polymarket bot's trading performance including win rates, PnL by coin, and hourly edge analysis. Prefer over the premium bundle endpoints if you only need Polymarket-specific data and want to minimize cost. Use when evaluating the bot's edge for ETH, SOL, XRP, or BTC prediction markets specifically.

## Known failure modes

- Payment failure (x402): missing or invalid USDC payment header returns 402 Payment Required
- Service unavailable: upstream bot data not refreshed, returns 503 or empty data
- Rate limiting: excessive requests may result in 429 Too Many Requests
- Stale data: bot may not have recent trades if market activity is low, resulting in zero active_positions and outdated per_coin stats

## How this service works

Prediction market analytics: active positions, per-coin win rates, edge analysis from DeepBlue Polymarket bot

## Output

Returns a JSON object with: overview (overall win rate, total trades, total PnL in USDC, active positions count), per_coin array (per-token breakdown of trades, PnL, and win rate for ETH/SOL/XRP/BTC), recent_20 object (last 20 trades wins/losses, streak status, PnL), best_hours and worst_hours arrays (hourly performance ranked by PnL and win rate). Data is sourced from DeepBlue's on-chain verified Polymarket bot.

## Example request

```json
{
 "query": "{\\\"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": {
      "overview": {
       "type": "object"
      },
      "per_coin": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-deepbluebase-xyz-924e065c/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)
