---
lang: en
title: 'API docs: rest.restapplication.route_1'
keywords: LoopBack 4.0, LoopBack 4, Node.js, TypeScript, OpenAPI
sidebar: lb4_sidebar
editurl: https://github.com/strongloop/loopback-next/tree/master/packages/rest
permalink: /doc/en/lb4/apidocs.rest.restapplication.route_1.html
---

<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@loopback/rest](./rest.md) &gt; [RestApplication](./rest.restapplication.md) &gt; [route](./rest.restapplication.route_1.md)

## RestApplication.route() method

Register a new route invoking a handler function.

<b>Signature:</b>

```typescript
route(verb: string, path: string, spec: OperationObject, handler: Function): Binding;
```

## Parameters

|  Parameter | Type | Description |
|  --- | --- | --- |
|  verb | string | HTTP verb of the endpoint |
|  path | string | URL path of the endpoint |
|  spec | OperationObject | The OpenAPI spec describing the endpoint (operation) |
|  handler | Function | The function to invoke with the request parameters described in the spec. |

<b>Returns:</b>

[Binding](./context.binding.md)

## Example


```ts
function greet(name: string) {
 return `hello ${name}`;
}
app.route('get', '/', operationSpec, greet);

```


