Skip to main content
GET
/
analyze
/
{wallet}
分析钱包
curl --request GET \
  --url http://127.0.0.1:3000/analyze/{wallet}
{}

Documentation Index

Fetch the complete documentation index at: https://docs.forevex.trade/llms.txt

Use this file to discover all available pages before exploring further.

完整 AnalyzeReport JSON,与 CLI analyze <wallet> 在相同配置与查询参数下语义一致。

路径

  • wallet0x 开头的地址;直接写在路径中即可,避免破坏路径的额外编码。

与 CLI 对齐的查询参数(可选)

参数说明
no_cache跳过报告缓存
with_subgraph / no_subgraph子图开关
subgraph_cap_rows子图每流行数上限
with_reconciliation / no_reconciliation对账开关
with_canonical / no_canonical规范层落库开关
no_persist_raw当次不写 raw
布尔值常用 true / false

示例

curl -s "http://127.0.0.1:3000/analyze/0x5924ca480d8b08cd5f3e5811fa378c4082475af6" | jq .
curl -s "http://127.0.0.1:3000/analyze/0x5924ca480d8b08cd5f3e5811fa378c4082475af6?no_cache=true" | jq .
curl -s "http://127.0.0.1:3000/analyze/0x5924ca480d8b08cd5f3e5811fa378c4082475af6?with_subgraph=true&with_reconciliation=true" | jq .

未提供 HTTP 的能力

report-from-canonical-runexport-ambiguousset-ambiguous-review 等仅支持 CLI;无对应 REST 路由。

Path Parameters

wallet
string
required

钱包地址,例如 0x5924…

Query Parameters

no_cache
boolean

为 true 时跳过 Postgres 报告缓存

with_subgraph
boolean

当次启用 Goldsky 子图拉取

no_subgraph
boolean

当次关闭子图

subgraph_cap_rows
integer

子图每条流最大行数封顶(整数)

Required range: x >= 0
with_reconciliation
boolean

当次启用对账摘要

no_reconciliation
boolean

当次关闭对账

with_canonical
boolean

当次启用规范层合并并写 PG(需数据库)

no_canonical
boolean

当次关闭规范层

no_persist_raw
boolean

当次不写 raw 表

Response

200 - application/json

AnalyzeReport JSON(schema_version 2.x)

结构化报告,含 lifetime、market_distribution、strategy_inference、frontend 等字段