Skip to main content
POST
/
v1
/
events-calendar
/
query
Events Calendar
curl --request POST \
  --url https://api.bigdata.com/v1/events-calendar/query \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "categories": [
    "earnings-call",
    "conference-call"
  ],
  "end_date": "2024-02-15",
  "limit": 100,
  "rp_entity_id": [
    "4A6F00",
    "D8442A"
  ],
  "start_date": "2024-01-01"
}
'
import requests

url = "https://api.bigdata.com/v1/events-calendar/query"

payload = {
"categories": ["earnings-call", "conference-call"],
"end_date": "2024-02-15",
"limit": 100,
"rp_entity_id": ["4A6F00", "D8442A"],
"start_date": "2024-01-01"
}
headers = {
"X-API-KEY": "<api-key>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {'X-API-KEY': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
categories: ['earnings-call', 'conference-call'],
end_date: '2024-02-15',
limit: 100,
rp_entity_id: ['4A6F00', 'D8442A'],
start_date: '2024-01-01'
})
};

fetch('https://api.bigdata.com/v1/events-calendar/query', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.bigdata.com/v1/events-calendar/query",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'categories' => [
'earnings-call',
'conference-call'
],
'end_date' => '2024-02-15',
'limit' => 100,
'rp_entity_id' => [
'4A6F00',
'D8442A'
],
'start_date' => '2024-01-01'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-KEY: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"strings"
"net/http"
"io"
)

func main() {

url := "https://api.bigdata.com/v1/events-calendar/query"

payload := strings.NewReader("{\n \"categories\": [\n \"earnings-call\",\n \"conference-call\"\n ],\n \"end_date\": \"2024-02-15\",\n \"limit\": 100,\n \"rp_entity_id\": [\n \"4A6F00\",\n \"D8442A\"\n ],\n \"start_date\": \"2024-01-01\"\n}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("X-API-KEY", "<api-key>")
req.Header.Add("Content-Type", "application/json")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://api.bigdata.com/v1/events-calendar/query")
.header("X-API-KEY", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"categories\": [\n \"earnings-call\",\n \"conference-call\"\n ],\n \"end_date\": \"2024-02-15\",\n \"limit\": 100,\n \"rp_entity_id\": [\n \"4A6F00\",\n \"D8442A\"\n ],\n \"start_date\": \"2024-01-01\"\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.bigdata.com/v1/events-calendar/query")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["X-API-KEY"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"categories\": [\n \"earnings-call\",\n \"conference-call\"\n ],\n \"end_date\": \"2024-02-15\",\n \"limit\": 100,\n \"rp_entity_id\": [\n \"4A6F00\",\n \"D8442A\"\n ],\n \"start_date\": \"2024-01-01\"\n}"

response = http.request(request)
puts response.read_body
{
  "results": {
    "4A6F00": [
      {
        "category": "earnings-call",
        "created_at": "2023-11-15T08:14:26.000Z",
        "event_datetime": "2024-01-25T21:00:00.000Z",
        "fiscal_period": "Q4",
        "fiscal_year": 2023,
        "rp_collection_id": "RP_COLLECTION_123456789",
        "title": "Alphabet Inc. Q4 2023 Earnings Call",
        "updated_at": "2024-01-20T14:30:15.000Z"
      },
      {
        "category": "conference-call",
        "created_at": "2024-01-05T12:00:00.000Z",
        "event_datetime": "2024-02-15T16:00:00.000Z",
        "fiscal_year": 2024,
        "rp_collection_id": "RP_COLLECTION_987654321",
        "title": "Alphabet Inc. Investor Day 2024",
        "updated_at": "2024-02-10T09:15:30.000Z"
      }
    ],
    "D8442A": [
      {
        "category": "earnings-call",
        "created_at": "2023-12-20T10:30:45.000Z",
        "event_datetime": "2024-01-31T17:00:00.000Z",
        "fiscal_period": "Q1",
        "fiscal_year": 2024,
        "rp_collection_id": "RP_COLLECTION_456789123",
        "title": "Apple Inc. Q1 2024 Earnings Call",
        "updated_at": "2024-01-25T11:45:20.000Z"
      }
    ]
  },
  "pagination": {
    "cursor": "375207",
    "has_cursor": true
  }
}

Authorizations

X-API-KEY
string
header
required

Body

application/json
rp_entity_id
string[] | null

A list of RavenPack internal entity identifiers. Bigdata uses the RavenPack Entity identifier (RP_Entity_ID) to uniquely reference entities such as companies. This identifier is a 6-character alphanumeric code (letters and numbers only). Example: Alphabet Inc. (4A6F00)

Example:

"4A6F00"

start_date
string<date> | null

The start date of the time range for retrieving events. Only events occurring on or after this date will be included. The expected date format is 'YYYY-MM-DD'.

Example:

"2025-09-02"

end_date
string<date> | null

The end date of the time range for retrieving events. Only events occurring on or before this date will be included. The expected date format is 'YYYY-MM-DD'.

Example:

"2025-09-03"

countries
string[] | null

A list of country codes (ISO 3166-1 alpha-2) to filter events by country. If omitted, events from all countries will be returned.

Example:

"US"

exchanges
string[] | null

The exchange field must contain a valid Market Identifier Code (MIC) corresponding to the exchange where the instrument is listed.

Example:

"XNAS"

categories
enum<string>[] | null

A list of event categories to filter by. If omitted, all event types will be returned. Events covered: 'earnings-call', 'conference-call'.

Available options:
earnings-call,
conference-call
Example:

"earnings-call"

cursor
string | null

The cursor for pagination. Use the 'cursor' value from the previous response's pagination to get the next set of results.

Example:

"375207"

limit
integer | null

The number of results to return per page. Must be between 1 and 1000, both inclusive.

Required range: 1 <= x <= 1000
Example:

100

Response

200 - application/json

Successful Response

results
Results · object
required

A dictionary mapping RP entity IDs to lists of event calendar entries for each company.

errors
ErrorDetail · object[] | null
metadata
Metadata · object | null
pagination
any | null