US Valuation Overview
Longbridge US Accounts
This method is only available for US data-center accounts.
Get valuation overview for a US stock — current valuation indicators and historical range.
SDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | YES | Stock symbol, e.g. 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
| Status | Description | Schema |
|---|---|---|
| 200 | Success | UsValuationOverview |
| 400 | Bad request | None |
Schemas
UsValuationOverview
| Name | Type | Required | Description |
|---|---|---|---|
| indicator | string | true | Primary valuation indicator name (e.g. PE) |
| metrics | map[string, USValuationMetric] | true | Valuation metrics keyed by indicator name |
| range | int | true | Historical percentile (0–100) |
| date | string | true | Valuation date |
| ccy_symbol | string | true | Currency symbol |
| ai_summary | string | false | AI-generated valuation summary |
| aichat_data | USAIChatData | false | AI chat context data |
USValuationMetric
| Name | Type | Description |
|---|---|---|
| circle | string | Current indicator value |
| part | string | Percentile position |
| metric | string | Metric name |
| desc | string | Metric description |
| industry_median | string | Industry median value |