# Seerium DEX Trading-Agent Signal API

> Seerium DEX Trading-Agent Signal API is a paid API for AI agents from api.seerium.xyz, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns the latest AI-generated DEX trading signal for a crypto symbol, including action, confidence, risk level, drivers, leverage context, and monitoring notes.

## Facts

- Endpoint: GET https://api.seerium.xyz/v1/dex/agent-output
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-seerium-xyz-fda86b70
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WD81XjBJd8RH75hFcyILb

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-seerium-xyz-fda86b70
```

Example prompt: What's the latest Seerium DEX trading-agent signal for BTC — give me the action, confidence, risk, and any leverage context?

## When to prefer this

Use this endpoint when an AI agent needs a structured, pre-analyzed DEX trading signal with confidence and risk metadata for a specific crypto symbol, rather than raw price data or order book feeds. Ideal for automated trading agents that need actionable recommendations with supporting context (drivers, leverage notes) rather than performing their own technical analysis.

## Known failure modes

- Missing or empty 'symbol' query parameter returns a validation error
- Unsupported or unrecognized symbol returns an error or empty result
- Payment not included or x402 payment fails, blocking access
- Stale data if the underlying signal feed hasn't been refreshed recently
- Network timeout for illiquid or rarely-traded symbols

## How this service works

Crypto and prediction market intelligence through x402.

## Output

Returns a structured trading-agent read for the requested symbol, including recommended action (e.g. buy/sell/hold), confidence score, risk rating, key market drivers, leverage context, and monitoring notes to guide trading decisions on decentralized exchanges.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "symbol": "BTC"
  }
 }
}
```

## 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": {
      "symbol": {
       "type": "string",
       "minLength": 1,
       "description": "Dex asset or pair for the trading-agent read, for example BTC or BTCUSDT."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "model": "futures-agent-v2",
   "action": "hold",
   "rationale": "Momentum, volume, and trend alignment remain constructive.",
   "riskLevel": "medium",
   "confidence": 78,
   "keyDrivers": [
    "24h momentum",
    "positive intraday volume",
    "trend confirmation"
   ],
   "monitoring": {
    "alerts": [
     "Lose 15m trend support",
     "Funding spikes against position"
    ],
    "metricsToWatch": [
     "price_change_pct_15m",
     "volume_quote_15m"
    ]
   }
  },
  "meta": {
   "requestId": "req_example_123",
   "updatedAt": "2026-03-25T11:59:30.000Z",
   "freshnessMs": 30000,
   "generatedAt": "2026-03-25T12:00:00.000Z"
  },
  "product": {
   "id": "dex-agent-output",
   "name": "Dex Trading Agent Output API",
   "path": "/v1/dex/agent-output",
   "price": "$0.1000",
   "method": "GET",
   "accepts": [
    {
     "payTo": "0x81832eEDe3a4ad96CB3D7cA09977636D912fd3D5",
     "price": "$0.1000",
     "scheme": "exact",
     "network": "eip155:8453"
    },
    {
     "payTo": "2h752kAbb9z1jpdSzqMEYg9JHv6TPJ6T2BfAJMyjLFtZ",
     "price": "$0.1000",
     "scheme": "exact",
     "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp"
    }
   ],
   "networks": [
    "eip155:8453",
    "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp"
   ]
  },
  "service": "seerium-x402-api"
 }
}
```

## More

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