> For the complete documentation index, see [llms.txt](https://hyper.ortusbooks.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hyper.ortusbooks.com/customizing-hyper/interceptors.md).

# Interceptors

Hyper announces two [interception points through ColdBox](https://coldbox.ortusbooks.com/the-basics/interceptors): `onHyperRequest` and `onHyperResponse`.

### onHyperRequest

This interception point is announced before the request is sent.  It receives the `request` as the only parameter inside `data`.

### onHyperResponse

This interception point is announced after the response is received.  It receives the `response` and the `request` inside `data`.
