Get All Ratings

Get All Ratings

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

​Gets all ratings ever posted by members of the ClosingBell community.

Query Parameters

Name
Type
Description

api_key

string

Your API key.

page

number

The page number.

{
    "success": true,
    "code": 200,
    "data": [
        {
            "id": 1,
            "user_id": 1,
            "symbol": "AAPL",
            "rating": 5,
            "rating_label": "Strong Buy",
            "action": 2,
            "action_label": "Upgraded",
            "prediction": "5.00",
            "tally_agree": 0,
            "tally_disagree": 0,
            "tally_comment": 0,
            "created_at": 1616122433,
            "created_at_date": "2021-03-19 02:53:53",
            "expired_at": 1623380031,
            "expired_at_date": "2021-06-11 02:53:51"
        },
        ...
    ]
}

Last updated

Was this helpful?