# TradeOS Dataset Concierge

> TradeOS Dataset Concierge is a paid API for AI agents from tradeos.tech, paid per call via x402, $1/call, status unknown (last checked 2026-09-14).

Returns curated TradeOS dataset package recommendations and guidance for builders constructing replay, calibration, decision, or risk-evaluation systems using crypto market data.

## Facts

- Endpoint: POST https://tradeos.tech/x402/v1/intelligence/tradeos-dataset-concierge
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tradeos-tech-2fb62461
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OzGHmFzpI263ldTgvu4co

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

Example prompt: I'm building a crypto risk-evaluation bot and need help picking the right TradeOS dataset package — can you run the dataset concierge and tell me which bundles are best suited for calibration and replay workflows?

## When to prefer this

Choose this endpoint when a developer or AI agent needs structured guidance on which TradeOS dataset package to use for a specific build goal such as replay simulation, model calibration, decision-support logic, or risk evaluation — rather than needing live market signals or token screening directly.

## Known failure modes

- Insufficient context about the builder's use case may yield generic recommendations
- Unsupported or unrecognized use case type returns an error or empty package list
- Payment failure (x402) results in 402 response before any dataset guidance is returned
- Malformed request body causes 400 validation error

## Output

A curated guide to TradeOS dataset packages relevant to the caller's use case — covering which datasets are appropriate for replay, calibration, decision-support, or risk-evaluation builders, along with descriptions, freshness notes, and scoping details to help the agent or developer select the right data bundle.

## Example request

```json
{
 "input": {
  "body": {
   "output": "json",
   "symbol": "BTC",
   "chain_id": "ethereum",
   "metadata": {
    "use_case": "risk-evaluation",
    "workflow_type": "calibration"
   },
   "contract_address": "0x0000000000000000000000000000000000000000"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "details",
  "drivers",
  "notices",
  "service",
  "subject",
  "verdict",
  "evidence",
  "confidence",
  "created_at",
  "request_id",
  "risk_flags",
  "next_checks",
  "missing_data",
  "request_type",
  "response_mode",
  "data_freshness",
  "negative_drivers",
  "positive_drivers",
  "refusal_category"
 ],
 "properties": {
  "details": {
   "type": "object",
   "required": [
    "packages",
    "access_path",
    "human_summary",
    "delivery_boundary",
    "best_fit_use_cases",
    "reppo_pipeline_configured"
   ],
   "properties": {
    "packages": {
     "type": "array",
     "items": {
      "type": "object",
      "required": [
       "package_id",
       "access_mode",
       "description",
       "builder_value"
      ],
      "properties": {
       "package_id": {
        "type": "string"
       },
       "access_mode": {
        "type": "string"
       },
       "description": {
        "type": "string"
       },
       "builder_value": {
        "type": "string"
       }
      }
     }
    },
    "access_path": {
     "type": "object",
     "required": [
      "next_step",
      "support_contact"
     ],
     "properties": {
      "next_step": {
       "type": "string"
      },
      "support_contact": {
       "type": "string"
      }
     }
    },
    "human_summary": {
     "type": "object",
     "required": [
      "headline",
      "data_gaps",
      "builder_use",
      "score_notes",
      "package_cards",
      "verdict_label",
      "support_contact",
      "product_primitive",
      "what_needs_review",
      "what_is_constructive",
      "selected_route_reason",
      "plain_language_summary"
     ],
     "properties": {
      "headline": {
       "type": "string"
      },
      "data_gaps": {
       "type": "array",
       "items": {
        "type": "unknown"
       }
      },
      "builder_use": {
       "type": "string"
      },
      "score_notes": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "package_cards": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "package",
         "best_for",
         "includes",
         "next_step",
         "access_mode"
        ],
        "properties": {
         "package": {
          "type": "string"
         },
         "best_for": {
          "type": "string"
         },
         "includes": {
          "type": "string"
         },
         "next_ste
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tradeos-tech-2fb62461/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)
