# TradeOS Dataset Package Scope & Preview Manifest

> TradeOS Dataset Package Scope & Preview Manifest is a paid API for AI agents from tradeos.tech, paid per call via x402, $3/call, status unknown (last checked 2026-09-16).

Returns a windowed, scoped preview manifest of a TradeOS dataset package for entitlement review before private data delivery.

## Facts

- Endpoint: POST https://tradeos.tech/x402/v1/intelligence/tradeos-dataset-package-scope
- Price: $3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tradeos-tech-ff90d6cf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_b-l81-0LzkyGI17E-xaph

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

Example prompt: Can you pull the TradeOS dataset package scope and preview manifest for the crypto intelligence package so I can review what signals and time window are included before we request the private delivery?

## When to prefer this

Use this endpoint when an agent or pipeline needs to inspect and validate the scope, fields, and time window of a TradeOS dataset package before committing to full private data delivery — especially useful for entitlement audits, compliance checks, or integration planning where previewing the manifest avoids unnecessary full-delivery costs.

## Known failure modes

- Invalid or unrecognized dataset package identifier returns 404 or error payload
- Insufficient entitlement or authorization returns access-denied response
- Malformed request body returns validation error
- Requested time window outside available data range returns out-of-bounds error
- Payment not confirmed via x402 protocol results in 402 payment required response

## How this service works

Create a dataset package preview before private delivery. Returns the time window, covered symbols, expected fields, caveats, access-review fields, and delivery readiness.

## Output

A structured JSON manifest describing the contents, time window, field coverage, and entitlement status of the requested TradeOS dataset package — giving the agent or analyst everything needed to decide whether to proceed with full private delivery.

## 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-ff90d6cf/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)
