Zum Inhalt springen
GET /v1/filed

Companies newly filed to go public

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/ipo-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/ipo-api/v1/filed" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ipo-api/v1/filed", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ipo-api/v1/filed");
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/filed",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "year": 2026,
        "count": 15,
        "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 In
…