curl --request GET \
--url 'https://api.benzinga.com/api/v2.1/calendar/conference-calls?token=' \
--header 'accept: <accept>'import requests
url = "https://api.benzinga.com/api/v2.1/calendar/conference-calls?token="
headers = {"accept": "<accept>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {accept: '<accept>'}};
fetch('https://api.benzinga.com/api/v2.1/calendar/conference-calls?token=', 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.benzinga.com/api/v2.1/calendar/conference-calls?token=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"accept: <accept>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.benzinga.com/api/v2.1/calendar/conference-calls?token="
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("accept", "<accept>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.benzinga.com/api/v2.1/calendar/conference-calls?token=")
.header("accept", "<accept>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.benzinga.com/api/v2.1/calendar/conference-calls?token=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["accept"] = '<accept>'
response = http.request(request)
puts response.read_body{
"conference": [
{
"access_code": "",
"cusip": "74965L101",
"date": "2026-02-27",
"exchange": "NYSE",
"id": "69455ad26f0e8300014905ae",
"importance": 2,
"international_num": "(201) 493-6780",
"isin": "US74965L1017",
"name": "RLJ Lodging",
"notes": "",
"phone_num": "(877) 407-3982",
"reservation_num": "",
"start_time": "10:00:00",
"ticker": "RLJ",
"time": "09:01:54",
"updated": 1766389198,
"webcast_url": "https://edge.media-server.com/mmc/p/vrgtwapr/"
},
{
"access_code": "",
"cusip": "252784301",
"date": "2026-02-27",
"exchange": "NYSE",
"id": "6942b5867dcc070001584a3e",
"importance": 2,
"international_num": "",
"isin": "US2527843013",
"name": "Diamondrock Hospitality",
"notes": "",
"phone_num": "",
"reservation_num": "",
"start_time": "09:00:00",
"ticker": "DRH",
"time": "08:52:06",
"updated": 1766046383,
"webcast_url": "https://edge.media-server.com/mmc/p/zqijedgm/"
}
]
}
{
"ok": false,
"errors": [
{
"code": "auth_failed",
"id": "unauthorized",
"value": "인증 토큰이 없거나 유효하지 않습니다"
}
]
}
{
"ok": false,
"errors": [
{
"code": "no_data_found",
"id": "not_found",
"value": "지정된 매개변수에 해당하는 데이터가 없습니다"
}
]
}
{
"ok": false,
"errors": [
{
"code": "internal_server_error",
"id": "server_error",
"value": "요청을 처리하는 동안 예기치 않은 오류가 발생했습니다"
}
]
}
컨퍼런스 콜
curl --request GET \
--url 'https://api.benzinga.com/api/v2.1/calendar/conference-calls?token=' \
--header 'accept: <accept>'import requests
url = "https://api.benzinga.com/api/v2.1/calendar/conference-calls?token="
headers = {"accept": "<accept>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {accept: '<accept>'}};
fetch('https://api.benzinga.com/api/v2.1/calendar/conference-calls?token=', 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.benzinga.com/api/v2.1/calendar/conference-calls?token=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"accept: <accept>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.benzinga.com/api/v2.1/calendar/conference-calls?token="
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("accept", "<accept>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.benzinga.com/api/v2.1/calendar/conference-calls?token=")
.header("accept", "<accept>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.benzinga.com/api/v2.1/calendar/conference-calls?token=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["accept"] = '<accept>'
response = http.request(request)
puts response.read_body{
"conference": [
{
"access_code": "",
"cusip": "74965L101",
"date": "2026-02-27",
"exchange": "NYSE",
"id": "69455ad26f0e8300014905ae",
"importance": 2,
"international_num": "(201) 493-6780",
"isin": "US74965L1017",
"name": "RLJ Lodging",
"notes": "",
"phone_num": "(877) 407-3982",
"reservation_num": "",
"start_time": "10:00:00",
"ticker": "RLJ",
"time": "09:01:54",
"updated": 1766389198,
"webcast_url": "https://edge.media-server.com/mmc/p/vrgtwapr/"
},
{
"access_code": "",
"cusip": "252784301",
"date": "2026-02-27",
"exchange": "NYSE",
"id": "6942b5867dcc070001584a3e",
"importance": 2,
"international_num": "",
"isin": "US2527843013",
"name": "Diamondrock Hospitality",
"notes": "",
"phone_num": "",
"reservation_num": "",
"start_time": "09:00:00",
"ticker": "DRH",
"time": "08:52:06",
"updated": 1766046383,
"webcast_url": "https://edge.media-server.com/mmc/p/zqijedgm/"
}
]
}
{
"ok": false,
"errors": [
{
"code": "auth_failed",
"id": "unauthorized",
"value": "인증 토큰이 없거나 유효하지 않습니다"
}
]
}
{
"ok": false,
"errors": [
{
"code": "no_data_found",
"id": "not_found",
"value": "지정된 매개변수에 해당하는 데이터가 없습니다"
}
]
}
{
"ok": false,
"errors": [
{
"code": "internal_server_error",
"id": "server_error",
"value": "요청을 처리하는 동안 예기치 않은 오류가 발생했습니다"
}
]
}
{
"conference": [
{
"access_code": "",
"cusip": "74965L101",
"date": "2026-02-27",
"exchange": "NYSE",
"id": "69455ad26f0e8300014905ae",
"importance": 2,
"international_num": "(201) 493-6780",
"isin": "US74965L1017",
"name": "RLJ Lodging",
"notes": "",
"phone_num": "(877) 407-3982",
"reservation_num": "",
"start_time": "10:00:00",
"ticker": "RLJ",
"time": "09:01:54",
"updated": 1766389198,
"webcast_url": "https://edge.media-server.com/mmc/p/vrgtwapr/"
},
{
"access_code": "",
"cusip": "252784301",
"date": "2026-02-27",
"exchange": "NYSE",
"id": "6942b5867dcc070001584a3e",
"importance": 2,
"international_num": "",
"isin": "US2527843013",
"name": "Diamondrock Hospitality",
"notes": "",
"phone_num": "",
"reservation_num": "",
"start_time": "09:00:00",
"ticker": "DRH",
"time": "08:52:06",
"updated": 1766046383,
"webcast_url": "https://edge.media-server.com/mmc/p/zqijedgm/"
}
]
}
{
"ok": false,
"errors": [
{
"code": "auth_failed",
"id": "unauthorized",
"value": "인증 토큰이 없거나 유효하지 않습니다"
}
]
}
{
"ok": false,
"errors": [
{
"code": "no_data_found",
"id": "not_found",
"value": "지정된 매개변수에 해당하는 데이터가 없습니다"
}
]
}
{
"ok": false,
"errors": [
{
"code": "internal_server_error",
"id": "server_error",
"value": "요청을 처리하는 동안 예기치 않은 오류가 발생했습니다"
}
]
}
인증
헤더
يُحدِّد تنسيق الإرجاع. تنطبق معاملات الاستعلام بالطريقة نفسها على كلا التنسيقين
application/json 쿼리 매개변수
إزاحة الصفحة. لأسباب تتعلق بالتحسين والأداء والاعتبارات التقنية، تكون إزاحات الصفحات محصورة بين 0 و100000. قيِّد نتائج الاستعلام باستخدام معلمات أخرى مثل التاريخ.
عدد النتائج المُعادة. الحد الأقصى 1000
التاريخ الذي يُستعلم عنه للحصول على بيانات calendar. يُستخدم كاختصار للمعاملين date_from وdate_to إذا كانا متساويين. القيمة الافتراضية: أحدث تاريخ متاح
تاريخ بدء الاستعلام من نقطة زمنية معيّنة
تاريخ الاستعلام حتى لحظة زمنية معيّنة
رمز تداول واحد أو أكثر، مفصولة بفواصل. الحد الأقصى 50 رمزًا من رموز الأسهم
الطابع الزمني Unix (بتوقيت UTC) لآخر تحديث للسجلات. يؤدي ذلك إلى فرض ترتيب الفرز بحيث يكون أكبر من أو يساوي الطابع الزمني المحدَّد
응답
نجاح
استجابة واجهة برمجة التطبيقات API التي تتضمن مصفوفة سجلات للمكالمات الجماعية
Show child attributes
Show child attributes