v1
latestOpenAPI 3.1.02026-07-2268276396.6 KBMarket Data
Entity Sentiment
Returns a time series of daily sentiment metrics for a single entity over a specified date range. Sentiment is a quantified signal derived from unstructured text using rule-based and machine-learning methods, indicating likely positive or negative market impact. The response includes daily_sentiment (mean sentiment), sentiment_pressure (abnormal sentiment intensity), and abnormal_media_attention (abnormal media volume).
post/v1/entity-sentiment/
Request body
Example request
{
"identifier": {
"type": "rp_entity_id",
"value": "4A6F00"
},
"timestamp": {
"start": "2025-01-01",
"end": "2025-01-20"
}
}Response
Successful Response
Example response
{
"results": {
"name": "Alphabet Inc.",
"id": "4A6F00",
"values": [
{
"date": "2025-10-20",
"daily_sentiment": 0.017404,
"sentiment_pressure": 0.217784,
"abnormal_media_attention": -0.833533
},
{
"date": "2025-10-21",
"daily_sentiment": 0.033251,
"sentiment_pressure": 0.208085,
"abnormal_media_attention": -0.835593
}
]
}
}