How to Secure API Keys Using Next.js Server Components
Reading time: 3 minutes
Overview
We can use Next.js server components to properly secure our API key from exposure in the frontend of our dapp. To further increase our API key security, we can also restrict our API key to certain subgraphs or domains in Subgraph Studio.
In this cookbook, we will go over how to create a Next.js server component that queries a subgraph while also hiding the API key from the frontend.
Caveats
- Next.js server components do not protect API keys from being drained using denial of service attacks.
- The Graph Network gateways have denial of service detection and mitigation strategies in place, however using server components may weaken these protections.
- Next.js server components introduce centralization risks as the server can go down.
Why It’s Needed
In a standard React application, API keys included in the frontend code can be exposed to the client-side, posing a security risk. While .env
files are commonly used, they don’t fully protect the keys since React’s code is executed on the client side, exposing the API key in the headers. Next.js Server Components address this issue by handling sensitive operations server-side.
Using client-side rendering to query a subgraph

Prerequisites
- An API key from Subgraph Studio
- Basic knowledge of Next.js and React.
- An existing Next.js project that uses the App Router.
Step-by-Step Cookbook
Step 1: Set Up Environment Variables
- In our Next.js project root, create a
.env.local
file. - Add our API key:
API_KEY=<api_key_here>
.
Step 2: Create a Server Component
- In our
components
directory, create a new file,ServerComponent.js
. - Use the provided example code to set up the server component.
Step 3: Implement Server-Side API Request
In ServerComponent.js
, add the following code:
const API_KEY = process.env.API_KEYexport default async function ServerComponent() { const response = await fetch( `https://gateway-arbitrum.network.thegraph.com/api/${API_KEY}/subgraphs/id/HUZDsRpEVP2AvzDCyzDHtdc64dyDxx8FQjzsmqSg4H3B`, { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ query: /* GraphQL */ ` { factories(first: 5) { id poolCount txCount totalVolumeUSD } } `, }), }, ) const responseData = await response.json() const data = responseData.data return ( <div> <h1>Server Component</h1> {data ? ( <ul> {data.factories.map((factory) => ( <li key={factory.id}> <p>ID: {factory.id}</p> <p>Pool Count: {factory.poolCount}</p> <p>Transaction Count: {factory.txCount}</p> <p>Total Volume USD: {factory.totalVolumeUSD}</p> </li> ))} </ul> ) : ( <p>Loading data...</p> )} </div> )}
Step 4: Use the Server Component
- In our page file (e.g.,
pages/index.js
), importServerComponent
. - Render the component:
import ServerComponent from './components/ServerComponent'export default function Home() { return ( <main> <ServerComponent /> </main> )}
Step 5: Run and Test Our Dapp
Start our Next.js application using npm run dev
. Verify that the server component is fetching data without exposing the API key.

Conclusion
By utilizing Next.js Server Components, we’ve effectively hidden the API key from the client-side, enhancing the security of our application. This method ensures that sensitive operations are handled server-side, away from potential client-side vulnerabilities. Finally, be sure to explore other API key security measures to increase your API key security even further.