Aller au contenu
GET /v1/priced

IPOs that have just priced

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/ipo-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
…