美股估值概覽
Longbridge US 賬戶
此方法僅適用於美國數據中心賬戶。
獲取美股估值概覽——當前估值指標及歷史區間。
SDK Links
Parameters
SDK 方法參數。
| 名稱 | 類型 | 必填 | 描述 |
|---|---|---|---|
| symbol | string | 是 | 股票代碼,如 AAPL.US |
Request Example
Response
Response Example
json
{
"indicator": "PE",
"metrics": {
"pe": {
"circle": "35.2",
"part": "72",
"metric": "PE",
"desc": "Price-to-Earnings ratio",
"industry_median": "28.4"
}
},
"range": 72,
"date": "2026-07-01",
"ccy_symbol": "USD",
"ai_summary": "Apple's PE ratio is in the 72nd percentile...",
"aichat_data": {
"agent_id": "valuation_aapl",
"handoff_agent_id": "",
"symbol": "AAPL.US",
"text": "Valuation overview for AAPL",
"type": "valuation",
"workflow_type": "valuation"
}
}Response Status
| 狀態碼 | 描述 | 结构 |
|---|---|---|
| 200 | 成功 | UsValuationOverview |
| 400 | 請求錯誤 | None |
Schemas
UsValuationOverview
| 名稱 | 類型 | 必填 | 描述 |
|---|---|---|---|
| indicator | string | 是 | 主要估值指標名稱(如 PE) |
| metrics | map[string, USValuationMetric] | 是 | 以指標名稱為鍵的估值指標字典 |
| range | int | 是 | 歷史百分位(0–100) |
| date | string | 是 | 估值日期 |
| ccy_symbol | string | 是 | 貨幣符號 |
| ai_summary | string | 否 | AI 生成的估值摘要 |
| aichat_data | USAIChatData | 否 | AI 對話上下文數據 |
USValuationMetric
| 名稱 | 類型 | 描述 |
|---|---|---|
| circle | string | 當前指標數值 |
| part | string | 百分位位置 |
| metric | string | 指標名稱 |
| desc | string | 指標描述 |
| industry_median | string | 行業中位數 |