# DeepBlueBase Polymarket Intelligence Feed

> DeepBlueBase Polymarket Intelligence Feed 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 enriched active Polymarket prediction markets with current volumes, odds, and metadata

## Facts

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

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

Example prompt: Pull the current enriched Polymarket intelligence feed — I want to see what active prediction markets are live right now, including their odds, trading volumes, and metadata.

## When to prefer this

Use this endpoint when you need a ready-enriched, intelligence-ready snapshot of active Polymarket prediction markets — volumes, odds, and metadata in one call — rather than querying Polymarket directly or assembling raw data yourself. Especially useful in agentic workflows where context-rich market data is needed quickly for analysis or decision-making.

## Known failure modes

- Payment not included or insufficient — 402 Payment Required response
- Network timeout if Polymarket upstream is slow
- Empty markets array if no active markets are currently indexed
- Malformed response if upstream Polymarket data is unavailable

## How this service works

Polymarket intelligence feed — enriched active prediction markets with volumes, odds, and metadata

## Output

A JSON object containing a count of active markets and an array of enriched market objects, each with current odds, trading volumes, resolution details, and metadata sourced from Polymarket.

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

## More

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