Add fal.ai to your Next.js app
You will learn how to:
- Install the fal.ai libraries
- Add a server proxy to protect your credentials
- Generate an image using SDXL
Prerequisites
- Have an existing Next.js app or create a new one using
npx create-next-app
- Have a fal.ai account
- Have an API Key. You can create one here
1. Install the fal.ai libraries
Using your favorite package manager, install both the @fal-ai/client
and @fal-ai/server-proxy
libraries.
2. Setup the proxy
The proxy will protect your API Key and prevent it from being exposed to the client. Usually app implementation have to handle that integration themselves, but in order to make the integration as smooth as possible, we provide a drop-in proxy implementation that can be integrated with either the Page Router or the App Router.
2.1. Page Router
If you are using the Page Router (i.e. src/pages/_app.js
), create an API handler in src/pages/api/fal/proxy.js
(or .ts
in case of TypeScript), and re-export the built-in proxy handler:
2.2. App Router
If you are using the App Router (i.e. src/app/page.jsx
) create a route handler in src/app/api/fal/proxy/route.js
(or .ts
in case of TypeScript), and re-export the route handler:
2.3. Setup the API Key
Make sure you have your API Key available as an environment variable. You can setup in your .env.local
file for development and also in your hosting provider for production, such as Vercel.
2.4. Custom proxy logic
It’s common for applications to execute custom logic before or after the proxy handler. For example, you may want to add a custom header to the request, or log the request and response, or apply some rate limit. The good news is that the proxy implementation is simply a standard Next.js API/route handler function, which means you can compose it with other handlers.
For example, let’s assume you want to add some analytics and apply some rate limit to the proxy handler:
Note that the URL that will be forwarded to server is available as a header named x-fal-target-url
. Also, keep in mind the example above is just an example, rateLimiter
and analytics
are just placeholders.
The example above used the app router, but the same logic can be applied to the page router and its handler
function.
3. Configure the client
On your main file (i.e. src/pages/_app.jsx
or src/app/page.jsx
), configure the client to use the proxy:
4. Generate an image
Now that the client is configured, you can generate an image using fal.subscribe
and pass the model id and the input parameters:
See more about SD with LoRA used in this example on fal.ai/models/sd-loras
What’s next?
Image generation is just one of the many cool things you can do with fal. Make sure you:
- Check our demo application at github.com/fal-ai/serverless-js/apps/demo-nextjs-app-router
- Check all the available Model APIs
- Learn how to write your own model APIs on Introduction to serverless functions
- Read more about function endpoints on Serving functions
- Check the next page to learn how to deploy your app to Vercel