Source Intelligence API · x402 Developer Preview

Connect your agents to Agent Economy source intelligence.

把 Agent Economy 的 source intelligence 接入你的 Agent。

A vertical Tavily-style layer for Agent Economy builders, starting with Agentic Payment.

面向 Agent Economy builder 的垂直 Tavily-style layer,从 Agentic Payment 开始。

Agentic Payment Signal is the free scenario app. Source Intelligence API is the lower-level x402 developer preview for teams that want the same source pool before or after Stablehunter filtering, priced at 0.01 USDC per request.

Agentic Payment Signal 是免费的场景应用。Source Intelligence API 是更底层的 x402 开发者预览,给需要调用同一批信息源、并按自己标准筛选的团队使用,价格为每次请求 0.01 USDC。

API layers

API 层级

V0 is source access. V1-lite adds signals and snapshots.

V0 是信息源访问。V1-lite 增加精选 signals 和 snapshots。

Use the raw layer when your screening criteria differ from Stablehunter's founder-oriented filter. Use the curated layer when your agent wants Stablehunter's filtered signal view.

当你的筛选标准和 Stablehunter 的创业者视角不同,使用 raw layer。当你的 Agent 想直接使用 Stablehunter 的筛选结果,使用 curated layer。

V0

Registry

Returns source names, types, topic areas, freshness, and external eligibility.

返回信息源名称、类型、主题范围、新鲜度和可外部调用状态。

GET https://cms.stablehunter.com/api/public/source-intelligence/registry

V0

Candidates

Returns safe pre-filter candidate metadata before Stablehunter's final Daily Signal judgment.

返回 Stablehunter 最终 Daily Signal 判断之前的安全候选元数据。

GET https://cms.stablehunter.com/api/public/source-intelligence/candidates?topic=payment_api

V1-lite

Signals

Returns Stablehunter-selected signal summaries built from safe source intelligence.

返回基于安全 source intelligence 生成的 Stablehunter 精选 signal 摘要。

GET https://cms.stablehunter.com/api/public/source-intelligence/signals?topic=payment_api

V1-lite

Research snapshots

Returns a compact topic brief with source coverage, entities, clusters, evidence notes, and caveats.

返回轻量 topic brief,包含来源覆盖、实体、信号聚类、证据说明和不确定性提示。

GET https://cms.stablehunter.com/api/public/source-intelligence/research-snapshots?topic=payment_api

Quickstart

快速开始

Inspect the payment challenge safely.

安全检查付款 challenge。

curl "https://cms.stablehunter.com/api/public/source-intelligence/research-snapshots?topic=payment_api"

Without a valid token, the API returns HTTP 402 and a Payment-Required header. This curl command inspects the challenge without signing a transaction or sending USDC.

如果没有有效 token,API 会返回 HTTP 402 和 Payment-Required header。这条 curl 命令只检查 challenge,不会签名交易或发送 USDC。

Paid quickstart

付费快速开始

Pay once and print the purchased JSON.

付款一次并打印购买的 JSON。

npx awal@latest x402 pay \
  "https://cms.stablehunter.com/api/public/source-intelligence/research-snapshots?topic=payment_api" \
  --max-amount 10000 \
  --json

10000 is 0.01 USDC in atomic units. The command intentionally sends a payment. Success means the JSON contains success: true, access.status: allowed, and the purchased payload. Without --json, the CLI may complete settlement without printing the response body.

10000 个原子单位等于 0.01 USDC。这条命令会主动付款。成功结果的 JSON 应包含 success: trueaccess.status: allowed 和购买的数据 payload。若不加 --json,CLI 可能完成结算但不打印响应正文。

Agent tool shape

Agent tool 形态

Wrap the endpoint as a tool.

把 endpoint 包成 tool。

async function agentEconomySignals(topic = "payment_api") {
  const res = await fetch(
    `https://cms.stablehunter.com/api/public/source-intelligence/research-snapshots?topic=${topic}`,
    { headers: { "x-source-intelligence-token": process.env.STABLEHUNTER_API_TOKEN } }
  )
  return await res.json()
}

Parameters and access

参数和访问

Start simple. Filter when needed.

先从简单调用开始,需要时再过滤。

Common filters

常用过滤参数

  • topic payment_api, agentic_payment, x402
  • entity Stripe, Coinbase, Alipay, x402
  • sourceType developer_docs, reddit, social
  • language en, zh
  • since / until ISO date filters

x402 developer preview

x402 开发者预览

The Base-mainnet x402 challenge is live at 0.01 USDC per request. Real buyer-wallet settlement was verified on July 23, 2026. Internal token access remains available for configured partners.

Base 主网 x402 challenge 已开放,价格为每次请求 0.01 USDC。真实买方钱包结算已于 2026 年 7 月 23 日验证成功;已配置合作方可以继续使用内部 token。

x402 · Developer Preview

What this is not

它不是什么

This is not a generic web search, crawl, or extract API. It is a vertical source intelligence layer for Agent Economy signals.

它不是泛搜索、爬取或网页抽取 API,而是 Agent Economy 垂直方向的 source intelligence layer。