Events
Request Event
Request a public event to be transcribed
POST /events-v2/request-event
Parameter | Type | DataType | Description |
---|---|---|---|
ticker | query | string | The ticker for the host company |
event_time | query | time | The expected time of the event |
event_title | query | string | The title of the event |
webcast_url | query | string | The webcast for the event, if applicable |
dial_in_phone_number | query | string | The phone conference for the event, if applicable |
dial_in_pin | query | string | A pin number for the event, if applicable |
Response
{
"status": "success"
}
Code Samples
Bash
curl --request POST \
--url 'https://premium.aiera.com/api/events/request-event' \
--header 'X-API-Key: xxx'
--data 'ticker=AMZN'
Python
import requests
requests.post(
"https://premium.aiera.com/api/events/request-event",
headers={"X-API-Key": "xxx"},
data={
"ticker": "AMZN"
}
)