Get Aggregate Ratings

Get Aggregate Ratings

GET https://data.closingbell.co/api/v1/posts/aggregates

Gets the aggregate community rating for a given symbol on a given day.

Path Parameters

Name
Type
Description

api_key

string

Your API key.

symbol

string

The symbol of the instrument.

date

string

A date formatted as YYYY-MM-DD. Defaults to today.

{
    "success": true,
    "code": 200,
    "data": {
        "day": "2021-03-19",
        "symbol": "AAPL",
        "total": 18,
        "avg_rating": "4.3333",
        "avg_prediction": "14.214444",
        "r1": 0,
        "r2": 0,
        "r3": 2,
        "r4": 8,
        "r5": 8,
        "a1": 6,
        "a2": 2,
        "a3": 1,
        "a4": 9,
        "a1_ratio": "0.3333",
        "a2_ratio": "0.1111",
        "a3_ratio": "0.0556",
        "a4_ratio": "0.5000"
    }
}

Last updated

Was this helpful?