Skip to content
GET /v1/priced

IPOs that have just priced

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/ipo-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "year": 2026,
        "count": 11,
        "month": 6,
        "priced": [
            {
                "status": "Priced",
                "symbol": "FTRAU",
                "company": "FutureCorp Space Acquisition 1",
                "exchange": "NYSE",
                "priced_date": "6/05/2026",
                "share_price": "10.00",
                "deal_size_usd": 200000000,
                "shares_offered": 20000000
            },
            {
                "status": "Priced",
                "symbol": "LFTO",
                "company": "Liftoff Mobile, Inc.",
                "exchange": "NASDAQ Global Select",
                "priced_date": "6/04/2026",
                "share_price": "23.00",
                "deal_size_usd": 437000000,
                "shares_offered": 19000000
            },
            {
                "status": "Priced",
                "symbol": "SSMR",
                "company": "Sunshine Silver Mining & Refining Co",
                "exchange": "NYSE",
                "priced_date": "6/04/2026",
                "share_price": "13.50",
                "deal_size_usd": 270000000,
                "shares_offered": 20000000
            },
            {
                "status": "Priced",
                "symbol": "LTGRU",
                "company": "Long Table Growth Corp.",
                "exchange": "NASDAQ Global",
                "priced_date": "6/04/2026",
                "share_price": "10.00",
                "deal_size_usd": 150000000,
                "shares_offered": 15000000
            },
            {
                "status": "Priced",
                "symbol": "IPVVU",
                "company": "InterPrivate Investment Partners V, Inc.",
                "exchange": "NASDAQ Global",
                "priced_date": "6/04/2026",
                "share_price": "10.00",
                "deal_size_usd": 175000000,
                "shares_offered": 17500000
            },
            {
                "status": "Priced",
                "symbol": "QNT",
                "company": "Quantinuum Inc.",
                "exchange": "NASDAQ Global",
                "priced_date": "6/04/2026",
                "share_price": "60.00",
                "deal_size_usd": 1680000000,
                "shares_offered": 28000000
            },
            {
                "status": "Priced",
                "symbol": "INIO",
                "company": "INNIO N.V.",
                "exchange": "NASDAQ Global Select",
                "priced_date": "6/04/2026",
                "share_price": "27.00",
                "deal_size_usd": 2430000000,
                "shares_offered": 90000000
            },
            {
                "status": "Priced",
                "symbol": "KEYYU",
                "company": "Keystone Acquisition Corp.",
                "exchange": "NASDAQ Global",
                "priced_date": "6/03/2026",
                "share_price": "10.00",
                "deal_size_usd": 2
…