/v1/calendar
Whole month: priced, upcoming, filed
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/ipo-api/v1/calendar" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ipo-api/v1/calendar", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ipo-api/v1/calendar");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/ipo-api/v1/calendar",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"year": 2026,
"filed": [
{
"symbol": "CGCFU",
"company": "Cartesian Growth Corp IV",
"filed_date": "6/08/2026",
"deal_size_usd": 287500000
},
{
"symbol": "RACD",
"company": "Research Alliance Corp IV",
"filed_date": "6/08/2026",
"deal_size_usd": 75000000
},
{
"symbol": "SIAI",
"company": "Silentium Ltd.",
"filed_date": "6/08/2026",
"deal_size_usd": 19780000
},
{
"symbol": "APBDU",
"company": "AParadise II Acquisition Corp.",
"filed_date": "6/08/2026",
"deal_size_usd": 155250000
},
{
"symbol": null,
"company": "Star Integratia Ltd",
"filed_date": "6/08/2026",
"deal_size_usd": 38333336
},
{
"symbol": "BSP",
"company": "Bending Spoons S.p.A.",
"filed_date": "6/08/2026",
"deal_size_usd": 100000000
},
{
"symbol": null,
"company": "Spring Valley Acquisition Corp. V",
"filed_date": "6/08/2026",
"deal_size_usd": 230000000
},
{
"symbol": "SIND",
"company": "Sinda Ltd.",
"filed_date": "6/05/2026",
"deal_size_usd": 100000000
},
{
"symbol": "MSAV",
"company": "MSAV Holdings Ltd",
"filed_date": "6/05/2026",
"deal_size_usd": 34500000
},
{
"symbol": "ITG",
"company": "ITG, Inc./DE/",
"filed_date": "6/05/2026",
"deal_size_usd": 100000000
},
{
"symbol": "MIACU",
"company": "Meridian3 Industrials Acquisition Corp",
"filed_date": "6/04/2026",
"deal_size_usd": 201250000
},
{
"symbol": null,
"company": "Watu Metals Acquisition Corp",
"filed_date": "6/04/2026",
"deal_size_usd": 115000000
},
{
"symbol": "GHXIU",
"company": "Gores Holdings XI, Inc.",
"filed_date": "6/03/2026",
"deal_size_usd": 358800000
},
{
"symbol": "NORTU",
"company": "Norient Acquisition",
"filed_date": "6/03/2026",
"deal_size_usd": 120750000
},
{
"symbol": "CUX",
"company": "CopperTech Metals Inc.",
…