# DeepBlue Prediction Markets Bundle

> DeepBlue Prediction Markets Bundle is a paid API for AI agents from api.deepbluebase.xyz, paid per call via x402, $0.03/call, status down (last checked 2026-09-15).

Returns active prediction market positions, current market odds, resolution history, and edge analysis in a single call

## Facts

- Endpoint: GET https://api.deepbluebase.xyz/prediction-markets
- Price: $0.03/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-25562547
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cNAC1fOCcXIPfc8QKKyNi

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-25562547
```

Example prompt: Pull up the full DeepBlue prediction markets bundle — I want to see my active positions, current odds, recent resolution history, and any edge analysis available right now.

## When to prefer this

Choose this endpoint when you need a comprehensive, single-call snapshot of prediction market activity including positions, odds, resolution history, and edge analysis together — rather than querying each data type separately. Ideal for dashboards, trading bots, or agents that need a full picture of prediction market state without multiple round trips.

## Known failure modes

- Payment not provided or invalid x402 payment header — returns 402 Payment Required
- Upstream prediction market data source unavailable — may return 503 or stale data
- Rate limiting if called too frequently — returns 429
- Malformed request parameters — returns 400 with validation error
- Empty positions array if no active markets exist at query time

## How this service works

Premium prediction markets bundle — active positions, market odds, resolution history, and edge analysis

## Output

A JSON object containing: a list of active prediction market positions, current market odds, resolution history entries, edge analysis metrics, total market volume, and a count of active markets — all bundled in a single response.

## 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": {
      "markets": {
       "type": "number"
      },
      "positions": {
       "type": "array"
      },
      "total_volume": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## More

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