5 Guides

nextjs

Interactive Guide to SSR for Fetching APIs in Next.js

Next.js provides Server Side Rendering (SSR) as a way of data fetching. Let's see how we can fetch data from APIs using SSR.

A Deep Dive Into Built-in Next.js REST API

Next.js lets you create API routes inside the application as a serverless function. In this guide, let's look at the ins and outs of this built-in REST API.

How to handle API Errors Using Response Helpers in Next.js?

In the course of Fetching APIs in Next.js, we may encounter an error if the API request doesn't go as planned. Let's see how to manage these errors using Next's Response Helpers.

Interactive Guide to ISR for Fetching APIs in Next.js

Next.js provides Incremental Static Regeneration (ISR) as a way of data fetching. Let's see how we can fetch data from APIs using ISR.

How to call APIs in Next.js?

Next.js extends the capabilities of React.js by providing features like SSR, SSF, ISR, etc. Let's take a look at how you can call APIs in Next.js.