# Seerium BTC/ETH Perpetual Futures Agent Output

> Seerium BTC/ETH Perpetual Futures Agent Output 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 AI agent output including directional signal, confidence score, risk level, key drivers, and monitoring notes for BTC or ETH perpetual futures.

## Facts

- Endpoint: GET https://api.seerium.xyz/v1/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-92719f0a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FMxYTLW-JICx_dvtnRAG2

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-92719f0a
```

Example prompt: What's the current Seerium agent signal for BTCUSDT — give me the direction, confidence, risk level, and the key drivers behind the call.

## When to prefer this

Use this endpoint when you need a structured, agent-ready directional intelligence output for BTC or ETH perpetual futures — including confidence, risk, drivers, and monitoring notes — rather than raw price data or generic news. Best suited for agentic trading workflows that need a pre-synthesized signal rather than building their own analysis pipeline.

## Known failure modes

- Missing or invalid 'symbol' query parameter returns a validation error
- Unsupported symbol (e.g. non-perp asset) may return empty or error response
- Payment not fulfilled (x402) returns 402 Payment Required
- Temporary data staleness if underlying market feeds are delayed
- Network or upstream provider outage returns 5xx error

## How this service works

Legacy Dex trading-agent signal API for agents. Prefer /v1/dex/agent-output. Returns the latest Seerium Dex trading-agent read for supported crypto symbols.

## Output

A structured AI agent output for the requested perpetual futures symbol, including directional signal (bull/bear/neutral), confidence score, risk rating, the key market drivers influencing the signal, and monitoring notes for ongoing observation.

## 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"
    }
   }
  }
 }
}
```

## More

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