Skip to main content

API reference

Docs handler options

The following options can be passed to the docsRoute (app router) and docsApiRoute (pages router) functions for customizing Next REST Framework:

NameDescription
deniedPathsArray of paths that are denied by Next REST Framework and not included in the OpenAPI spec. Supports wildcards using asterisk * and double asterisk ** for recursive matching. Example: ['/api/disallowed-path', '/api/disallowed-path-2/*', '/api/disallowed-path-3/**'] Defaults to no paths being disallowed.
allowedPathsArray of paths that are allowed by Next REST Framework and included in the OpenAPI spec. Supports wildcards using asterisk * and double asterisk ** for recursive matching. Example: ['/api/allowed-path', '/api/allowed-path-2/*', '/api/allowed-path-3/**'] Defaults to all paths being allowed.
openApiObjectAn OpenAPI Object that can be used to override and extend the auto-generated specification.
openApiJsonPathPath that will be used for fetching the OpenAPI spec - defaults to /openapi.json. This path also determines the path where this file will be generated inside the public folder.
docsConfigA Docs config object for customizing the generated docs.
suppressInfoSetting this to true will suppress all informational logs from Next REST Framework. Defaults to false.

Docs config

The docs config options can be used to customize the generated docs:

NameDescription
providerDetermines whether to render the docs using Redoc (redoc) or SwaggerUI swagger-ui. Defaults to redoc.
titleCustom title, used for the visible title and HTML title.
descriptionCustom description, used for the visible description and HTML meta description.
faviconUrlCustom HTML meta favicon URL.
ogConfigBasic customization options for OG meta tags. Requires the following fields: title, type, url, imageUrl.
logoUrlA URL for a custom logo.

REST

Route handler options

The following options can be passed to the routeHandler (app router) and apiRouteHandler (pages router) functions to create new API endpoints:

NameDescriptionRequired
GET \| PUT \| POST \| DELETE \| OPTIONS \| HEAD \| PATCHA Method handler object.true
openApiPathAn OpenAPI Path Item Object that can be used to override and extend the auto-generated specification.false

Route operations

The route operation functions routeOperation (app router) and apiRouteOperation (pages router) allow you to define your API handlers for your endpoints. These functions accept an OpenAPI Operation object as a parameter, that can be used to override the auto-generated specification. Calling this function allows you to chain your API handler logic with the following functions.

NameDescription
inputA Route operation input function for defining the validation and documentation of the request.
outputsAn Route operation outputs function for defining the validation and documentation of the response.
handlerA Route operation-handler function for defining your business logic.
middlewareA Route operation middleware function that gets executed before the request input is validated. You may chain up to three middlewares together and share data between the middlewares by taking the input of the previous middleware.
Route operation input

The route operation input function is used for type-checking, validation and documentation of the request, taking in an object with the following properties:

NameDescriptionRequired
contentTypeThe content type header of the request. When the content type is defined, a request with an incorrect content type header will get an error response.false
bodyA Zod schema describing the format of the request body. When the body schema is defined, a request with an invalid request body will get an error response.false
queryA Zod schema describing the format of the query parameters. When the query schema is defined, a request with invalid query parameters will get an error response.false

Calling the route operation input function allows you to chain your API handler logic with the Route operation outputs, Route operation middleware and Route operation handler functions.

Route operation outputs

The route operation outputs function is used for type-checking and documentation of the response, taking in an array of objects with the following properties:

NameDescriptionRequired
statusA status code that your API can return.true
contentTypeThe content type header of the response.true
schemaA Zod schema describing the format of the response data. true

Calling the route operation outputs function allows you to chain your API handler logic with the Route operation middleware and Route operation handler functions.

Route operation middleware

The route operation middleware function is executed before validating the request input. The function takes in the same parameters as the Next.js router handlers and API routes handlers. Additionally, as a second parameter this function takes the return value of your last middleware function, defaulting to an empty object. Throwing an error inside a middleware function will stop the execution of the handler and you can also return a custom response like you would do within the Handler function. Calling the route operation middleware function allows you to chain your API handler logic with the Handler function. Alternatively, you may chain up to three middleware functions together:

// ...
const handler = route({
getTodos: routeOperation()
.middleware(() => {
return { foo: 'bar' };
})
.middleware((_req, _ctx, { foo }) => {
// if (myCondition) {
// return NextResponse.json({ error: 'My error.' });
// }

return {
foo,
bar: 'baz'
};
})
.handler((_req, _ctx, { foo, bar }) => {
// ...
})
});
Route operation handler

The route operation handler function is a strongly-typed function to implement the business logic for your API. The function takes in strongly-typed versions of the same parameters as the Next.js router handlers and API routes handlers. Additionally, as a third parameter this function takes the return value of your last middleware function:

// ...
const handler = route({
getTodos: routeOperation()
.middleware(() => {
return { foo: "bar" };
})
.handler((_req, _ctx, { foo }) => {
// ...
});
});

RPC

RPC route handler options

The rpcRouteHandler (app router) and rpcApiRouteHandler (pages router) functions allow the following options as the second parameter after passing your RPC operations.

NameDescriptionRequired
openApiPathAn OpenAPI Path Item Object that can be used to override and extend the auto-generated specification.false
openApiOperationAn OpenAPI Path Item Object that can be used to override and extend the auto-generated specification.false

RPC operations

The rpcOperation function allows you to define your API handlers for your RPC endpoint. Calling this function allows you to chain your API handler logic with the following functions.

NameDescription
inputAn RPC operation input function for defining the validation and documentation of the operation.
outputsAn RPC operation outputs function for defining the validation and documentation of the response.
handlerAn RPC operation handler function for defining your business logic.
middlewareAn RPC operation middleware function that gets executed before the operation input is validated. You may chain up to three middlewares together and share data between the middlewares by taking the input of the previous middleware.
RPC operation input

The RPC operation input function is used for type-checking, validation and documentation of the RPC call. It takes in a A Zod schema as a parameter that describes the format of the operation input. When the input schema is defined, an RPC call with invalid input will get an error response.

Calling the RPC input function allows you to chain your API handler logic with the RPC operation outputs, RPC middleware and RPC handler functions.

RPC operation outputs

The RPC operation outputs function is used for type-checking and documentation of the response, taking in an array of objects with the following properties:

NameDescriptionRequired
schemaA Zod schema describing the format of the response data. true
nameAn optional name used in the generated OpenAPI spec, e.g. GetTodosErrorResponse.false

Calling the RPC operation outputs function allows you to chain your API handler logic with the RPC operation middleware and RPC operation handler functions.

RPC operation middleware

The RPC operation middleware function is executed before validating RPC operation input. The function takes in strongly typed parameters typed by the RPC operation input function. Additionally, as a second parameter this function takes the return value of your last middleware function, defaulting to an empty object. Throwing an error inside a middleware function will stop the execution of the handler. Calling the RPC operation middleware function allows you to chain your RPC API handler logic with the RPC operation handler function. Alternatively, you may chain up to three middleware functions together:

// ...
const handler = rpcRoute({
getTodos: rpcOperation()
.middleware(() => {
return { foo: 'bar' };
})
.middleware((_input, { foo }) => {
// if (myCondition) {
// throw Error('My error.')
// }

return {
foo,
bar: 'baz'
};
})
.handler((_input, { foo, bar }) => {
// ...
})
});
RPC operation handler

The RPC operation handler function is a strongly-typed function to implement the business logic for your API. The function takes in strongly typed parameters typed by the RPC operation input function. Additionally, as a second parameter this function takes the return value of your last middleware function:

// ...
const handler = rpcApiRoute({
getTodos: rpcOperation()
.middleware(() => {
return { foo: "bar" };
})
.handler((_input, { foo }) => {
// ...
});
});

CLI

The Next REST Framework CLI supports generating and validating the openapi.json file:

  • npx next-rest-framework generate to generate the openapi.json file.
  • npx next-rest-framework validate to validate that the openapi.json file is up-to-date.

The next-rest-framework validate command is useful to have as part of the static checks in your CI/CD pipeline. Both commands support the following options:

NameDescription
--configPath <string>In case you have multiple docs handlers with different configurations, you can specify which configuration you want to use by providing the path to the API. Example: /api/my-configuration.

A good practice is to set these in your package.json as both commands are needed:

// package.json
...
"scripts": {
...
"generate": "next-rest-framework generate",
"validate": "next-rest-framework validate",
}