Skip to main content
GET
/
v1
/
stock
/
earnings-call-live
Get Earnings Call Live
curl --request GET \
  --url https://api.aries.com/v1/stock/earnings-call-live \
  --header 'Authorization: Bearer <token>'
{
  "event": [
    {
      "symbol": "LTRX",
      "event": "LTRX - Earnings call Q1 year",
      "time": "2024-11-07 23:30:00",
      "year": 2025,
      "quarter": 1,
      "liveAudio": "",
      "recording": "https://api.tradearies.dev/v1/stock/media/recording/file/publicdatany/audio2/0bd25a9ed602ec35eee894fd900a8784f9cf4fe78de1232daa5e53c315acd76d.mp3"
    }
  ]
}

Query parameters

ParameterTypeRequiredDescription
fromstringNoFrom date (optional filter).
tostringNoTo date (optional filter).
symbolstringNoStock ticker symbol (optional filter).

Response

Success returns 200 OK with a JSON object containing live/recorded earnings call data (event array with liveAudio, recording, symbol, time, year). Errors: 401 unauthorized, 404 when no data found, 500 server error.

Authorizations

Authorization
string
header
required

OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.

Query Parameters

from
string<date>

Start of the date window, inclusive. Format: YYYY-MM-DD.

to
string<date>

End of the date window, inclusive. Format: YYYY-MM-DD.

symbol
string

Stock ticker to query. Send the plain uppercase symbol, e.g. AAPL.

Example:

"AAPL"

Response

Earnings call live data.

event
object[]