When can I expect the data to be available?
What time zone is the data in?
How do the updatedAt and createdAt properties relate to the events?
updatedAt
and createdAt
properties are timestamps that indicate when properties were last updated or created. These timestamps are crucial for tracking changes and ensuring that you have the most current information.The updatedAt
property reflects the last time the data was modified, while the createdAt
property indicates when the data was initially created.
The properties are not always related to the actual event date. This is the case when we add backlog material. In these cases, the updatedAt and createdAt properties might greatly differ from the event date which can be fetched from the event endpoint.How do I keep my data up-to-date with the latest changes?
updatedBefore
and updatedAfter
properties to only fetch data that has changed in a certain time window.Is there a rate limit for the API?
Which company identifiers are available?
Do I need to keep a local state of the company ids?
isin
, ticker
and companyId
. This means you can use any of these identifiers to query the API. However, all but the company endpoints will only return the companyId
in the response.When querying more than one company identifier at a time, e.g. /events?tickers=AAPL,AMZN
, the API will return the companyId
for each object in the response. In order to map these back to the original identifiers, you can use the /companies
endpoint with the ids
query parameter.
This will return the isin
, ticker
and companyId
for each company in the response and allows you to map the identifiers back to tickers in the original request.Do you support company name searches?
isin
, ticker
or companyId
to identify companies in our system. This is the most reliable way to ensure you are working with the correct company. Company names are subject to change and can be ambiguous. For example, “Delta” could refer to Delta Air Lines, Delta Electronics or Delta Lithium.What is the best channel to communicate incidents and get support?
Who is the primary point of contact for support?
What are your support hours?
What is the expected response time for general email inquiries?
What is the expected response time after an incident has been reported?
How do I authenticate with the API?
x-api-key
header of your requests.How do I get an API key?
How do I revoke an API key?
Is there an expiration date for API keys?
I'm getting a 403 Forbidden error. What does this mean?
/documents
endpoint, make sure you have permission to access all three document types: reports
, slides
and transcripts
. If you are missing one of these permissions, you will receive a 403 Forbidden error when trying to access the endpoint./live
endpoint, make sure you have permission to access both live transcripts
and live audio
. If you are missing one of these permissions, you will receive a 403 Forbidden error when trying to access the endpoint.