# DeepBlueBase 5-Minute BTC/ETH Prediction Market Discovery

> DeepBlueBase 5-Minute BTC/ETH Prediction Market Discovery 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).

Fetches active 5-minute epoch prediction markets for BTC, ETH, and SOL on Polymarket, including current up/down odds, token IDs, and timing

## Facts

- Endpoint: GET https://api.deepbluebase.xyz/polymarket/5min
- 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-9cff159d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_N7pFotWGwPXantDQqRRYk

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-9cff159d
```

Example prompt: What are the current 5-minute Polymarket prediction markets for BTC and ETH — give me the up/down odds, token IDs, and whether they're still accepting orders for this epoch.

## When to prefer this

Use this endpoint when you need to programmatically discover currently active 5-minute BTC/ETH/SOL Polymarket prediction markets with real-time odds and token IDs for automated trading, arbitrage, or market monitoring. Prefer this over the broader Polymarket intelligence feed when you specifically need short-duration epoch markets with token IDs ready for order placement.

## Known failure modes

- No active markets for current epoch — markets may be between epochs or Polymarket Gamma API is temporarily unavailable
- Stale data if the upstream Polymarket feed is delayed — epoch timestamps should be checked for freshness
- HTTP 402 if payment header is missing or USDC balance is insufficient
- Partial response if only some coins have active markets (e.g. SOL missing but BTC/ETH present)
- Empty markets object if Polymarket has paused 5-minute epoch markets

## How this service works

5-minute epoch prediction market discovery — active BTC/ETH markets with current odds and timing

## Output

Returns a structured object with active 5-minute prediction markets for BTC, ETH, and SOL, each containing: the market question text, current up and down prices (as probabilities 0–1), Polymarket token IDs for both sides, the target epoch UNIX timestamp, the market slug, and a boolean indicating whether the market is currently accepting orders.

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

## More

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