الاكتتابات العامة الأولية v2.1
curl --request GET \
--url 'https://api.benzinga.com/api/v2.1/calendar/ipos?token='import requests
url = "https://api.benzinga.com/api/v2.1/calendar/ipos?token="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.benzinga.com/api/v2.1/calendar/ipos?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/ipos?token=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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/ipos?token="
req, _ := http.NewRequest("GET", url, nil)
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/ipos?token=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.benzinga.com/api/v2.1/calendar/ipos?token=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"ipos": [
{
"currency": "USD",
"date": "2026",
"deal_status": "Withdrawn",
"description": "",
"exchange": "NASDAQ",
"id": "604b6d8a36622a000186b793",
"initial_filing_date": "",
"insider_lockup_date": "",
"insider_lockup_days": 180,
"ipo_type": "SPAC Unit",
"last_yr_income": 0,
"last_yr_income_year": 0,
"last_yr_revenue": 0,
"last_yr_revenue_year": 0,
"lead_underwriters": [
"Citigroup",
"JP Morgan"
],
"market_cap_at_offer": 0,
"name": "SEP Growth Holdings Corp",
"notes": "",
"offering_shares": 25000000,
"offering_shares_ord_adr": 0,
"offering_value": 0,
"open_date_verified": false,
"ord_shares_out_after_offer": 0,
"other_underwriters": [],
"price_max": "",
"price_min": "",
"price_open": "",
"price_public_offering": "10.000",
"pricing_date": "",
"pricing_date_verified": false,
"sec_accession_number": "",
"sec_filing_url": "",
"shares_outstanding": 0,
"sic": 0,
"spac_converted_to_target": false,
"state_location": "",
"ticker": "SEPGU",
"time": "08:32:58",
"underwriter_quiet_expiration_date": "",
"underwriter_quiet_expiration_days": 0,
"updated": 1767600431
}
]
}
{
"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": "リクエストの処理中に予期しないエラーが発生しました"
}
]
}
calendar
IPO
GET
/
api
/
v2.1
/
calendar
/
ipos
الاكتتابات العامة الأولية v2.1
curl --request GET \
--url 'https://api.benzinga.com/api/v2.1/calendar/ipos?token='import requests
url = "https://api.benzinga.com/api/v2.1/calendar/ipos?token="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.benzinga.com/api/v2.1/calendar/ipos?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/ipos?token=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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/ipos?token="
req, _ := http.NewRequest("GET", url, nil)
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/ipos?token=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.benzinga.com/api/v2.1/calendar/ipos?token=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"ipos": [
{
"currency": "USD",
"date": "2026",
"deal_status": "Withdrawn",
"description": "",
"exchange": "NASDAQ",
"id": "604b6d8a36622a000186b793",
"initial_filing_date": "",
"insider_lockup_date": "",
"insider_lockup_days": 180,
"ipo_type": "SPAC Unit",
"last_yr_income": 0,
"last_yr_income_year": 0,
"last_yr_revenue": 0,
"last_yr_revenue_year": 0,
"lead_underwriters": [
"Citigroup",
"JP Morgan"
],
"market_cap_at_offer": 0,
"name": "SEP Growth Holdings Corp",
"notes": "",
"offering_shares": 25000000,
"offering_shares_ord_adr": 0,
"offering_value": 0,
"open_date_verified": false,
"ord_shares_out_after_offer": 0,
"other_underwriters": [],
"price_max": "",
"price_min": "",
"price_open": "",
"price_public_offering": "10.000",
"pricing_date": "",
"pricing_date_verified": false,
"sec_accession_number": "",
"sec_filing_url": "",
"shares_outstanding": 0,
"sic": 0,
"spac_converted_to_target": false,
"state_location": "",
"ticker": "SEPGU",
"time": "08:32:58",
"underwriter_quiet_expiration_date": "",
"underwriter_quiet_expiration_days": 0,
"updated": 1767600431
}
]
}
{
"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": "リクエストの処理中に予期しないエラーが発生しました"
}
]
}
{
"ipos": [
{
"currency": "USD",
"date": "2026",
"deal_status": "Withdrawn",
"description": "",
"exchange": "NASDAQ",
"id": "604b6d8a36622a000186b793",
"initial_filing_date": "",
"insider_lockup_date": "",
"insider_lockup_days": 180,
"ipo_type": "SPAC Unit",
"last_yr_income": 0,
"last_yr_income_year": 0,
"last_yr_revenue": 0,
"last_yr_revenue_year": 0,
"lead_underwriters": [
"Citigroup",
"JP Morgan"
],
"market_cap_at_offer": 0,
"name": "SEP Growth Holdings Corp",
"notes": "",
"offering_shares": 25000000,
"offering_shares_ord_adr": 0,
"offering_value": 0,
"open_date_verified": false,
"ord_shares_out_after_offer": 0,
"other_underwriters": [],
"price_max": "",
"price_min": "",
"price_open": "",
"price_public_offering": "10.000",
"pricing_date": "",
"pricing_date_verified": false,
"sec_accession_number": "",
"sec_filing_url": "",
"shares_outstanding": 0,
"sic": 0,
"spac_converted_to_target": false,
"state_location": "",
"ticker": "SEPGU",
"time": "08:32:58",
"underwriter_quiet_expiration_date": "",
"underwriter_quiet_expiration_days": 0,
"updated": 1767600431
}
]
}
{
"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": "リクエストの処理中に予期しないエラーが発生しました"
}
]
}
承認
クエリパラメータ
رقم الصفحة
حجم الصفحة
تاريخ الطرح العام الأولي (IPO) بتنسيق YYYY-MM-DD (مَعْلَمة جديدة ومفضَّلة)
تاريخ الطرح العام الأولي بتنسيق YYYY-MM-DD (مهمل)
تاريخ البدء بتنسيق YYYY-MM-DD
تاريخ الانتهاء بالتنسيق YYYY-MM-DD
رموز الأسهم
نوع الطرح العام الأولي
وقت التحديث بصيغة Unix
レスポンス
الطروحات العامة الأولية
استجابة من واجهة برمجة التطبيقات API تتضمن مصفوفة من سجلات الاكتتابات العامة الأولية (IPO)
Show child attributes
Show child attributes
⌘I