Valuations
Get current valuation metrics (P/E, P/B, P/S, dividend yield) with 5-year historical context.
SDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | YES | Security symbol, e.g. AAPL.US |
| indicator | string | NO | Indicator filter: pe, pb, ps, dvd_yld |
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"metrics": {
"pe": { "current": "29.5", "high": "35.2", "low": "18.0", "median": "26.0" },
"pb": { "current": "45.1", "high": "50.0", "low": "30.0", "median": "42.0" }
}
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | ValuationsResponse |
| 400 | Bad request | None |
Schemas
ValuationsResponse
| Name | Type | Required | Description |
|---|---|---|---|
| metrics | object | true | Valuation metrics map |
| ∟ pe | object | false | P/E ratio data |
| ∟∟ current | string | true | Current value |
| ∟∟ high | string | true | 5-year high |
| ∟∟ low | string | true | 5-year low |
| ∟∟ median | string | true | 5-year median |