TanStackT
TanStack10mo ago
1 reply
abstract-purple

Unable to get JSON in Post API Route

I am doing the following in a POST API Routes handler:
export const APIRoute = createAPIFileRoute("/api/test")({
  POST: async ({ request }) => {
    const body = await request.json();
    console.log(body);
    return json({ message: "Hello" });
  },
});


And it never logs and gets stuck on awaiting the request.json(). I have my Content-Type header set. Any ideas?
Was this page helpful?