> For the complete documentation index, see [llms.txt](https://docs.ocelotbot.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ocelotbot.xyz/custom-commands/http-module.md).

# HTTP Module

The HTTP Module allows you to make GET requests and receive back information. POST requests are not yet implemented.

## get(url: string)

Returns the `body` and `statusCode` of the response to the request.

```lua
local http = require('http');
local resp = http.get("https://ocelotbot.xyz/");
d.send(resp.statusCode)
```
