Next.js Discord

Discord Forum

NextJs Manage API Approach

Unanswered
Manav Verma posted this in #help-forum
Open in Discord
hi! In nextjs app
i tried many approaches to arrange api's

(Note: i am using laravel as backend and Nextjs 15 app directory for frontend)

I have used these approaches
api folder (default) - but this has overhead of writing more code
directly add full fetch where i need (fetch with url att the same code) - causes not to follow dry rule
also tried action.ts approach - eg: blog/blog-action.ts is located there
if i need blog api from blog/action.ts. then i need to call from that path (i personally don't like this approach)
create seperate folder (which has api's defined (axios) like blogApi.ts, categoryApi.ts etc..)


which i should follow and what will be good?
the websites that i create has alot of api's
also i need to focus on easy scability for future.

What should i follow?
Is there's any better approach than this? need suggestions

1 Reply