# TradeOS Fusion Signals History 7D

> TradeOS Fusion Signals History 7D is a paid API for AI agents from tradeos.tech, paid per call via x402, $1.5/call, status unknown (last checked 2026-09-15).

Returns up to 500 sanitized rows of TradeOS fusion signal history from the past 7 days, including timestamps, scores, decision states, and freshness metadata for research audits and model evaluation.

## Facts

- Endpoint: POST https://tradeos.tech/x402/v1/intelligence/tradeos-fusion-signals-history-7d
- Price: $1.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tradeos-tech-89dbf746
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cDNMVDYpbMUnPFpXpGnF7

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 tradeos-tech-89dbf746 -d '<json body>'
```

Example prompt: Pull the last 7 days of TradeOS fusion signal history — give me up to 500 rows with timestamps, scores, and decision states so I can review signal quality and run a weekly model evaluation audit.

## When to prefer this

Choose this endpoint when you need a full weekly (7-day) review window of TradeOS fusion signal history — ideal for weekly dashboards, model backtesting, research audits, or agent evaluation cycles where more than 1 day of history is required but raw feed access is not needed. Prefer the 1-day variant for real-time or intraday recency needs.

## Known failure modes

- Invalid or missing filter parameters return a 400 error
- Exceeding row limit caps response at 500 rows without error
- Payment not processed results in 402 response blocking data delivery
- Stale or unavailable upstream data may reduce row count below requested amount
- Malformed date range or unsupported filter combination returns validation error

## Output

A bounded dataset of up to 500 sanitized historical signal rows covering the past 7 days, each with timestamps, signal scores, decision states, filter metadata, and freshness indicators — suitable for dashboard backfills, model evaluation, and research audits. No trade execution or raw feed data included.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "output": {
       "type": "string"
      },
      "symbol": {
       "type": "string"
      },
      "chain_id": {
       "type": "string"
      },
      "metadata": {
       "type": "object"
      },
      "contract_address": {
       "type": "string"
      }
     },
     "additionalProperties": true
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "const": "POST"
    },
    "bodyType": {
     "type": "string",
     "const": "json"
    }
   }
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tradeos-tech-89dbf746/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tradeos.tech](https://www.zero.xyz/host/tradeos.tech/llms.txt)
