Data not fetched from server component in Next.js App Router; works in Client Component and Postman

I’ve created an API in the Next.js App Directory at app/api/status/route.js, which works perfectly fine when fetched from a Client Component or when tested using Postman. However, it seems that the data is not fetched properly when attempting to retrieve it from a Server Component. Nothing is returned, and I don’t see any network requests in the Developer Tools Network tab.

Here’s the code for my Server Component:

// app/page.js
async function fetchStatus() {
  try {
    const response = await fetch('http://localhost:3000/api/status', {
      cache: 'no-store', // Fetch fresh data each time
      method: 'GET',
    });
    if (!response.ok) {
      throw new Error('Failed to fetch');
    }
    const data = await response.json();
    console.log(data);
    return data.status;
  } catch (error) {
    console.error('Error fetching status:', error);
    return 'Error fetching data';
  }
}

export default async function HomePage() {
  const status = await fetchStatus();

  return (
    <div className="grid grid-rows-[20px_1fr_20px] items-center justify-items-center min-h-screen p-8 pb-20 gap-16 sm:p-20 font-[family-name:var(--font-geist-sans)]">
      <main className="flex flex-col gap-8 row-start-2 items-center sm:items-start">
        <p>Status from the API: {status}</p>
      </main>
    </div>
  );
}

And here is the API route code:

// app/api/status/route.js
import { NextResponse } from 'next/server';

export async function GET(request) {
  return NextResponse.json({ message: "working" });
}

Problem:

The API route returns the expected response when tested with Postman.
The data is correctly fetched and displayed when using a Client Component.
The data is not fetched and nothing appears in the Network tab when using the Server Component.
What I’ve Tried:

Ensured that the URL used in the fetch request is correct and accessible.
Checked the API route to confirm it returns data as expected.
Verified that there are no network issues or CORS issues.
Question:

What am I doing wrong, and how can I resolve this issue so that the server component can fetch data from the API route correctly?

You can make a better structure like this and find your solution :

//app.page.tsx
"use client";

import { useEffect, useState } from "react";

async function fetchStatus() {
  try {
    const response = await fetch("/api/status", {
      cache: "no-store",
      method: "GET",
    });
    if (!response.ok) {
      throw new Error("Failed to fetch");
    }
    const data = await response.json();
    return data.message;
  } catch (error) {
    console.error("Error fetching status:", error);
    return "Error fetching data";
  }
}

export default function HomePage() {
  const [status, setStatus] = useState("Loading...");

  useEffect(() => {
    async function getStatus() {
      const result = await fetchStatus();
      setStatus(result);
    }

    getStatus();
  }, []);

  return (
    <div className="grid grid-rows-[20px_1fr_20px] items-center justify-items-center min-h-screen p-8 pb-20 gap-16 sm:p-20 font-[family-name:var(--font-geist-sans)]">
      <main className="flex flex-col gap-8 row-start-2 items-center sm:items-start">
        <p>Status from the API: {status}</p>
      </main>
    </div>
  );
}
//app/api/status/route.ts
import { NextResponse } from 'next/server';

export async function GET() {
  return NextResponse.json({ message: 'Hello from Next.js!' });
}

export async function POST() {
  return new NextResponse('Method not allowed', { status: 405 });
}

1

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật