> For the complete documentation index, see [llms.txt](https://sevenval.gitbook.io/flat/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://sevenval.gitbook.io/flat/develop/cookbook/request-timeout.md).

# Increasing the Request Timeout

In case we have to deal with a slow upstream system, the [various timeout options](/flat/develop/reference/actions/request.md#options) of the `request` action will help. Here we allow a five second overall timeout for the request:

```markup
<flow>
  <request>
  {
    "url": "https://httpbin.org/delay/4",
    "options": {
      "timeout": 5
    }
  }
  </request>
</flow>
```

Without that `timeout` option the request will be aborted after three seconds – FLAT's default timeout setting.

## See also

* [`request` action timeouts](/flat/develop/reference/actions/request.md#options) (Reference)
* [default timeouts](/flat/develop/administration/configuration.md#request-timeouts) (Administration)
