Roic AI RQL
  • Welcome
  • Roic Query Language
    • Getting Started
    • Query Builder
    • Query Structure
    • Ticker Syntax
    • Fields
    • Parameters
    • Options
  • Standalone Data Points
    • Company News
    • Earnings Call List
    • Earnings Call
Powered by GitBook
On this page
  • Request
  • Response

Was this helpful?

  1. Standalone Data Points

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
    },
    ...
]
PreviousCompany NewsNextEarnings Call

Last updated 9 months ago

Was this helpful?