Source Intelligence API

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 paid lower-level API for teams that want the same source pool before or after Stablehunter filtering.

Agentic Payment Signal 是免费的场景应用。Source Intelligence API 是更底层的付费 API,给需要调用同一批信息源、并按自己标准筛选的团队使用。

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

快速开始

Call a research snapshot from your agent.

从你的 Agent 调用 research snapshot。

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

Without a valid token or payment credential, the API returns HTTP 402 with payment instructions.

如果没有有效 token 或支付凭证,API 会返回 HTTP 402 和支付说明。

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

Paid access

付费访问

API access is protected by the paid Source Intelligence layer. Internal token access is available for configured partners.

API 访问由付费 Source Intelligence 层保护。已配置合作方可以使用内部 token。

x402 Alipay AI Pay 支付宝 AI Pay WeChat AI Pay 微信 AI Pay

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。