# TradeOS Fusion Signals History 24h

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

Returns up to 200 rows of sanitized TradeOS fusion signal history from the past 24 hours, including scores, decision states, filters, timestamps, and freshness metadata for dashboard backfills and behavior audits.

## Facts

- Endpoint: POST https://tradeos.tech/x402/v1/intelligence/tradeos-fusion-signals-history-24h
- Price: $0.75/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-82eae557
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_N4FqNKvquUiqAK3QO13f7

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-82eae557 -d '<json body>'
```

Example prompt: Pull the last 24 hours of TradeOS fusion signal history for ETH — I want up to 200 rows showing scores, decision states, and timestamps so I can audit what changed and backfill my dashboard.

## When to prefer this

Choose this endpoint when you need a short, recent audit window (today's history) rather than multi-day research — ideal for dashboard backfills, intraday behavior checks, or quick context snapshots without the cost of the 7-day history endpoint. Use over the real-time snapshot when you need to replay or audit what changed, not just the current state.

## Known failure modes

- No signals found for the specified filters in the 24h window — returns empty rows array
- Invalid filter parameters cause a 400 validation error
- Payment not received or insufficient USDC causes 402 Payment Required
- Rate limiting or quota exceeded returns 429
- Token symbol not recognized returns empty or error response

## How this service works

A one-day signal history window for dashboard backfills, recent behavior audits, and agents that need context beyond the latest snapshot. It returns up to 200 sanitized historical rows with filters, timestamps, scores, decision states, and freshness metadata, so consumers can replay what changed without buying or reselling a raw feed. Read-only history, not execution.

## Output

A JSON array of up to 200 sanitized historical signal rows covering the past 24 hours, each containing signal scores, decision states, filter metadata, timestamps, and freshness indicators — no raw feed, no execution data, read-only research output.

## 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-82eae557/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)
