Valuation History
Get historical valuation metric time series (PE, PB, PS, dividend yield).
SDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | YES | Security symbol, e.g. AAPL.US |
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"history": {
"metrics": {
"pe": {
"desc": "P/E Ratio",
"high": "35.2",
"low": "18.1",
"median": "26.5",
"list": [
{
"timestamp": "1622520000",
"value": "28.5"
}
]
},
"pb": null,
"ps": null
}
}
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | ValuationHistoryResponse |
| 400 | Bad request | None |
Schemas
ValuationHistoryResponse
| Name | Type | Required | Description |
|---|---|---|---|
| history | object | true | Valuation history data |
| history.metrics | object | false | Valuation metrics |
| history.metrics.pe | object | false | P/E ratio history |
| history.metrics.pb | object | false | P/B ratio history |
| history.metrics.ps | object | false | P/S ratio history |
ValuationMetric
| Name | Type | Required | Description |
|---|---|---|---|
| desc | string | false | Description of current valuation |
| high | string | false | Historical high value |
| low | string | false | Historical low value |
| median | string | false | Median value |
| list | object[] | false | Time series data points, see ValuationMetric |
| list[].date | string | false | Date (YYYY-MM-DD) |
| list[].value | string | false | Valuation value |