# Seerium DEX Market Brief API

> Seerium DEX Market Brief API is a paid API for AI agents from api.seerium.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Returns a combined crypto DEX market brief for a single asset or perp pair, aggregating price, volume, funding rates, order book pressure, and trading-agent signals.

## Facts

- Endpoint: GET https://api.seerium.xyz/v1/dex/market-brief
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/seerium-dex-market-brief-api-a1015cbe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e_V2YRqiAqD6HLuo5p2Dw

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 seerium-dex-market-brief-api-a1015cbe
```

Example prompt: Give me a full DEX market brief for BTC-PERP — I want price, volume, funding heat, order book pressure across 10 levels, and the Seerium trading-agent signal all in one shot.

## When to prefer this

Use this endpoint when you need a consolidated, single-call DEX market brief for a crypto asset or perpetual pair — especially when you want price, volume, funding rate, order book pressure, and a trading-agent signal all in one response rather than calling multiple separate data APIs. Ideal for AI trading agents that need a fast, structured market snapshot per asset.

## Known failure modes

- Missing required 'symbol' parameter returns a 400 validation error
- Invalid or unrecognized symbol returns an error or empty result
- Order book levels outside 1-20 range rejected with validation error
- Payment not provided or invalid x402 payment header results in 402 Payment Required
- Upstream DEX data source unavailable causes partial or failed response
- Rate limiting if too many calls made without valid payment

## How this service works

Crypto and prediction market intelligence through x402.

## Output

A combined market brief object for the requested asset or perp pair, including current market price, trading volume, funding rate/heat, order book pressure (bid/ask imbalance across N levels), and the latest Seerium DEX trading-agent output/signal.

## 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",
     "required": [
      "symbol"
     ],
     "properties": {
      "levels": {
       "type": "number",
       "maximum": 20,
       "minimum": 1,
       "description": "Optional order book levels per side used for pressure. Defaults to 10."
      },
      "symbol": {
       "type": "string",
       "minLength": 1,
       "description": "Required Dex asset or pair to brief, for example BTC, BTCUSDT, or BTC-PERP."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "agent": {
    "model": "futures-agent-v2",
    "action": "hold",
    "rationale": "Mixed funding and book pressure favor waiting for confirmation.",
    "riskLevel": "medium",
    "confidence": 62,
    "keyDrivers": [
     "funding pressure",
     "order book imbalance",
     "short-term momentum"
    ],
    "monitoring": {
     "alerts": [
      "Watch for spread widening",
      "Watch funding reversal"
     ],
     "metricsToWatch": [
      "fundingRate",
      "pressureScore",
      "change24h"
     ]
    }
   },
   "asset": "BTC",
   "venue": "dex",
   "market": {
    "low24h": 59880.2,
    "high24h": 61210.4,
    "change24h": 0.0157,
    "lastPrice": 60763.8,
    "fundingRate": -0.000537,
    "quoteVolume": 3014587850.28
   },
   "symbol": "BTCUSDT",
   "signals": {
    "riskLevel": "medium",
    "agentAction": "hold",
    "pressureScore": 0.214,
    "agentConfidence": 62,
    "fundingHeatScore": 35.8,
    "fundingCrowdedSide": "short",
    "orderbookDirection": "buy_pressure"
   },
   "criteria": {
    "levels": 10,
    "symbol": "BTC"
   },
   "warnings": [],
   "freshness": {
    "dexUpdatedAt": "2026-03-25T12:00:00.000Z",
    "agentUpdatedAt": "2026-03-25T11:59:30.000Z",
    "fundingUpdatedAt": "2026-03-25T12:00:00.000Z",
    "orderbookUpdatedAt": "2026-03-25T12:00:00.000Z"
   },
   "timestamp": 1760000000000,
   "monitoring": {
    "alerts": [
     "Watch for spread widening",
     "Watch funding reversal"
    ],
    "metricsToWatch": [
     "fundingRate",
     "pressureScore",
     "change24h"
    ]
   },
   "fundingHeat": {
    "rank": 1,
    "low24h": 59880.2,
    "reason": "negative funding means shorts are paying longs by 5.37 bps.",
    "symbol": "BTCUSDT",
    "high24h": 61210.4,
    "severity": "medium",
    "change24h": 0.0157,
    "heatScore": 35.8,
    "lastPrice": 60763.8,
    "fundingBps": -5.37,
    "fundingRate": -0.000537,
    "quoteVolume": 3014587850.28,
    "sideCrowded": "short"
   },
   "orderbookPressure": {
    "symbol": "BTCUSDT",
    "bestAsk": 60764.1,
    "bestBid": 60763.7,
    "reasons": [
     "bid depth is 1.65x the opposite side across the measured book"
    ],
    "midPrice": 60763.9,
    "change24h": 0.0157,
    "direction": "buy_pressure",
    "lastPrice": 60763.8,
    "spreadBps": 0.7,
    "confidence": "high",
    "levelsUsed": 10,
    "microprice": 60764.01,
    "fundingRate": -0.000537,
    "microBiasBps": 1.8,
    "bookTimestamp": "2026-03-25T12:00:00.000Z",
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/seerium-dex-market-brief-api-a1015cbe/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.seerium.xyz](https://www.zero.xyz/host/api.seerium.xyz/llms.txt)
