Ir al contenido
GET /v1/meta

Spec

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/ipo-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

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