Earnings Call List

This API endpoint retrieves a list of earnings call details for a specific stock symbol.

Request

https://api.roic.ai/v1/earnings_call_list/?symbol=AAPL&quantity=10&apikey=API_KEY
Params

symbol

AAPL

quantity

10

apikey

API_KEY

Response

The response for this request can be documented as a JSON schema:

[
    {
        "date": "2024-08-01 19:36:04",
        "year": 2024,
        "quarter": 3
    },
    {
        "date": "2024-05-02 20:30:10",
        "year": 2024,
        "quarter": 2
    },
    {
        "date": "2024-02-01 20:17:02",
        "year": 2024,
        "quarter": 1
    },
    ...
]

Last updated

Was this helpful?