From 8090992030df9d6f9843d65c6f18de730d2c14b9 Mon Sep 17 00:00:00 2001 From: loadingcloud001 Date: Mon, 13 Apr 2026 22:16:59 +0800 Subject: [PATCH] fix: ipo-calendar - change reportedDate to ipoDate to match Alpha Vantage response --- app/api/ipo-calendar/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/ipo-calendar/route.ts b/app/api/ipo-calendar/route.ts index bf73b5e..7958795 100644 --- a/app/api/ipo-calendar/route.ts +++ b/app/api/ipo-calendar/route.ts @@ -5,7 +5,7 @@ const config = { baseUrl: "https://www.alphavantage.co/query", apiKey: process.env.ALPHA_VANTAGE_IPO_KEY ?? "", functionName: "IPO_CALENDAR", - requiredColumns: ["symbol", "reportedDate"], + requiredColumns: ["symbol", "ipoDate"], }; if (!config.apiKey) {