# Hyper HTTP Collector

You can use the `hyper` configuration structure to configure the `hyper` panel in the debugger. This will track all outgoing http/s calls made by the Hyper module in your debugger.

<figure><img src="/files/tC9c7ErvOqrUCvdiTyBs" alt=""><figcaption><p>Hyper Panel</p></figcaption></figure>

{% hint style="info" %}
Hyper exists to provide a fluent builder experience for HTTP requests and responses. It also provides a powerful way to create clients, i.e. Builder objects with pre-configured defaults like a base URL or certain headers.

#### <https://forgebox.io/view/hyper> <a href="#requirements" id="requirements"></a>

{% endhint %}

```cfscript
// Hyper Collector
hyper    : {
	enabled         : false,
	expanded        : false,
	logResponseData : false,
	logRequestBody  : false
}
```

<table><thead><tr><th width="206">Key</th><th width="126">Type</th><th width="89">Default Value</th><th>Description</th></tr></thead><tbody><tr><td><code>enabled</code></td><td>Boolean</td><td>false</td><td>Enable the collector</td></tr><tr><td><code>expanded</code></td><td>Boolean</td><td>false</td><td>Expand the panel by default or not</td></tr><tr><td><code>logResponseData</code></td><td>Boolean</td><td>false</td><td>Log the response from the API Call</td></tr><tr><td><code>logRequestBody</code></td><td>Boolean</td><td>false</td><td>Logs the request body</td></tr></tbody></table>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://cbdebugger.ortusbooks.com/collectors/hyper-http-collector.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
