curl --request GET \
--url 'https://api.benzinga.com/api/v2.1/calendar/fda?token=' \
--header 'accept: <accept>'import requests
url = "https://api.benzinga.com/api/v2.1/calendar/fda?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/fda?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/fda?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/fda?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/fda?token=")
.header("accept", "<accept>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.benzinga.com/api/v2.1/calendar/fda?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{
"fda": [
{
"commentary": "",
"companies": [
{
"cik": "",
"id": "62b3773a118ebc0001427b67",
"name": "Alpha Tau Medical Ltd.",
"securities": [
{
"exchange": "NASDAQ",
"symbol": "DRTS"
}
]
}
],
"created": 1767621777,
"date": "2026-01-05",
"drug": {
"generic": false,
"id": "62b3771c9c3cd100011418ce",
"indication_symptom": [
"سرطان البروستاتا"
],
"name": "Alpha DaRT"
},
"event_type": "Provided Update",
"id": "695bc49183cac20001bec514",
"nic_number": "",
"notes": "",
"outcome": "أعلنت شركة Alpha Tau Medical Ltd. عن تقديم الوحدة الأولى من طلب موافقتها قبل التسويق (PMA) إلى إدارة الغذاء والدواء الأميركية (FDA)، وذلك عقب قرار إدارة الغذاء والدواء (FDA) السابق بالسماح للشركة باستخدام النهج المعياري الأكثر مرونة.",
"outcome_brief": "",
"source_link": "https://www.benzinga.com/pressreleases/26/01/g49690927/alpha-tau-submits-first-pre-market-approval-module-to-the-fda-for-alpha-dart-for-the-treatment-of-",
"source_type": "Press Release",
"status": "",
"target_date": "",
"time": "09:00:00",
"updated": 1767621823
}
]
}
{
"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": "حدث خطأ غير متوقع أثناء معالجة طلبك"
}
]
}
هيئة الغذاء والدواء (FDA)
curl --request GET \
--url 'https://api.benzinga.com/api/v2.1/calendar/fda?token=' \
--header 'accept: <accept>'import requests
url = "https://api.benzinga.com/api/v2.1/calendar/fda?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/fda?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/fda?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/fda?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/fda?token=")
.header("accept", "<accept>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.benzinga.com/api/v2.1/calendar/fda?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{
"fda": [
{
"commentary": "",
"companies": [
{
"cik": "",
"id": "62b3773a118ebc0001427b67",
"name": "Alpha Tau Medical Ltd.",
"securities": [
{
"exchange": "NASDAQ",
"symbol": "DRTS"
}
]
}
],
"created": 1767621777,
"date": "2026-01-05",
"drug": {
"generic": false,
"id": "62b3771c9c3cd100011418ce",
"indication_symptom": [
"سرطان البروستاتا"
],
"name": "Alpha DaRT"
},
"event_type": "Provided Update",
"id": "695bc49183cac20001bec514",
"nic_number": "",
"notes": "",
"outcome": "أعلنت شركة Alpha Tau Medical Ltd. عن تقديم الوحدة الأولى من طلب موافقتها قبل التسويق (PMA) إلى إدارة الغذاء والدواء الأميركية (FDA)، وذلك عقب قرار إدارة الغذاء والدواء (FDA) السابق بالسماح للشركة باستخدام النهج المعياري الأكثر مرونة.",
"outcome_brief": "",
"source_link": "https://www.benzinga.com/pressreleases/26/01/g49690927/alpha-tau-submits-first-pre-market-approval-module-to-the-fda-for-alpha-dart-for-the-treatment-of-",
"source_type": "Press Release",
"status": "",
"target_date": "",
"time": "09:00:00",
"updated": 1767621823
}
]
}
{
"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": "حدث خطأ غير متوقع أثناء معالجة طلبك"
}
]
}
{
"fda": [
{
"commentary": "",
"companies": [
{
"cik": "",
"id": "62b3773a118ebc0001427b67",
"name": "Alpha Tau Medical Ltd.",
"securities": [
{
"exchange": "NASDAQ",
"symbol": "DRTS"
}
]
}
],
"created": 1767621777,
"date": "2026-01-05",
"drug": {
"generic": false,
"id": "62b3771c9c3cd100011418ce",
"indication_symptom": [
"سرطان البروستاتا"
],
"name": "Alpha DaRT"
},
"event_type": "Provided Update",
"id": "695bc49183cac20001bec514",
"nic_number": "",
"notes": "",
"outcome": "أعلنت شركة Alpha Tau Medical Ltd. عن تقديم الوحدة الأولى من طلب موافقتها قبل التسويق (PMA) إلى إدارة الغذاء والدواء الأميركية (FDA)، وذلك عقب قرار إدارة الغذاء والدواء (FDA) السابق بالسماح للشركة باستخدام النهج المعياري الأكثر مرونة.",
"outcome_brief": "",
"source_link": "https://www.benzinga.com/pressreleases/26/01/g49690927/alpha-tau-submits-first-pre-market-approval-module-to-the-fda-for-alpha-dart-for-the-treatment-of-",
"source_type": "Press Release",
"status": "",
"target_date": "",
"time": "09:00:00",
"updated": 1767621823
}
]
}
{
"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 عندما يكونان متطابقين. القيمة الافتراضية هي الأحدث.
تاريخ بدء الاستعلام من نقطة زمنية معينة
تاريخ الاستعلام إلى نقطة زمنية معينة
التاريخ المستخدم لتصفية calendar وفرزها. القيمة الافتراضية هي announced
announced, target بعض حقول التواريخ (مثل التاريخ المستهدف في تقويم FDA) تتضمّن تواريخ تقريبية مثل 2021-Q1. عند التصفية، يمكنك اختيار السماح بمطابقة التواريخ التقريبية، أو مطابقة صارمة للتواريخ تبحث فقط عن التواريخ ذات التطابق التام ضمن الفترة الزمنية المحددة. القيمة الافتراضية TRUE
معرّف ورقة مالية واحد أو أكثر، مفصولة بفواصل. الحد الأقصى 50 ورقة مالية. يجب أن تكون معرّفات الأوراق المالية بصيغة رموز التداول، وللأسهم المدرجة في البورصات الأمريكية فقط
الطابع الزمني يونكس (UTC) لآخر مرة تم فيها تحديث السجلات. يؤدي ذلك إلى فرض ترتيب الفرز ليكون أكبر من أو يساوي الطابع الزمني المحدَّد
الاستجابة
نجاح
استجابة من واجهة برمجة التطبيقات API تتضمن مصفوفة من سجلات أحداث إدارة الغذاء والدواء (FDA)
Show child attributes
Show child attributes
هل كانت هذه الصفحة مفيدة؟