Price $0
Price $0.03 USDC per request. Synthetic degraded ticker demo for { ticker, date?, analysts? }. Returns a synthetic degraded demo payload; no live market data or TradingAgents execution. Not financial advice.
30000 (raw units)
price
3
calls / 30d
1
unique payers
2026-09-12
updated
Provider
tradingagents-x402.fly.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x7861db4efc14a1ed5dd8c96c528a3796560f1393",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "30000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"analysts": [
"market",
"news",
"fundamentals"
],
"ticker": "NVDA"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"confidence": "high",
"configured_roles": [
"market",
"news",
"fundamentals"
],
"date": "2026-05-15",
"decision": "BUY",
"degraded": true,
"input": {
"bodyFields": {
"analysts": [
"market",
"news",
"fundamentals"
],
"ticker": "NVDA"
},
"method": "POST",
"type": "http"
},
"ok": true,
"reports": {
"fundamentals": "Synthetic canned example; no issuer data was checked.",
"news": "Synthetic canned example; no news sources were queried.",
"risk_review": "Synthetic canned example; no portfolio was analyzed.",
"technical": "Synthetic canned example; no price data was retrieved.",
"trader_plan": "Synthetic canned example; not a trading signal."
},
"summary": "Synthetic degraded demonstration response for NVDA; no live market data or TradingAgents execution was used.",
"synthetic": true,
"ticker": "NVDA"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"analysts": {
"default": [
"market",
"social",
"news",
"fundamentals"
],
"description": "Optional exact subset of synthetic report roles to return",
"items": {
"enum": [
"market",
"social",
"news",
"fundamentals"
],
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"date": {
"description": "Optional analysis date in YYYY-MM-DD format; defaults to today",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
},
"ticker": {
"description": "Public equity or crypto ticker symbol, for example NVDA",
"maxLength": 10,
"minLength": 1,
"pattern": "^[A-Za-z0-9.\\-]+$",
"type": "string"
}
},
"required": [
"ticker"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"confidence": {
"type": "string"
},
"configured_roles": {
"items": {
"enum": [
"market",
"social",
"news",
"fundamentals"
],
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"date": {
"type": "string"
},
"decision": {
"enum": [
"BUY",
"HOLD",
"SELL"
],
"type": "string"
},
"degraded": {
"type": "boolean"
},
"error": {
"type": "string"
},
"ok": {
"type": "boolean"
},
"reports": {
"type": "object"
},
"summary": {
"type": "string"
},
"synthetic": {
"const": true,
"type": "boolean"
},
"ticker": {
"type": "string"
}
},
"required": [
"ok",
"ticker",
"date",
"decision",
"confidence",
"summary",
"synthetic",
"degraded",
"configured_roles",
"reports"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://tradingagents-x402.fly.dev/api/analyze-ticker" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://tradingagents-x402.fly.dev/api/analyze-ticker");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://tradingagents-x402.fly.dev/api/analyze-ticker")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/15159.json, and this resource appears in /discovery/resources and /discovery/search.