/v1/meta
Spec
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/ipo-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ipo-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ipo-api/v1/meta");
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/meta",
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": {
"source": "Nasdaq IPO calendar (live)",
"service": "ipo-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/filed": "Companies newly filed to go public (month= optional).",
"GET /v1/priced": "IPOs that have just priced and begun trading (month= optional).",
"GET /v1/calendar": "The whole month — priced, upcoming and filed IPOs with counts (month=2026-06, optional).",
"GET /v1/upcoming": "IPOs expected to price soon, with price range (month= optional)."
},
"description": "The live pipeline of US stock-market IPOs from Nasdaq's public IPO calendar: the offerings that have just priced and begun trading (ticker, company, exchange, offer price, shares, date, deal size); the IPOs expected to price soon with their price range; companies that have newly filed to go public; and the whole month in one call with counts. Any past month can be requested; with no month, the current one is returned. Live, no key, nothing stored. Distinct from stock-quote and earnings APIs — this is the calendar of companies coming to market: priced, upcoming and freshly filed offerings.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-09T20:24:47.147Z",
"request_id": "0a5745fa-76e3-4001-8159-68f38664c3de"
},
"status": "ok",
"message": "Meta",
"success": true
}