> ## Documentation Index
> Fetch the complete documentation index at: https://docsuncv2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# httpget

Performs an HTTP GET request and returns the response body string.

```luau theme={null}
httpget(url: string): string
```

## Parameters

| Parameter | Type     | Description                         |
| --------- | -------- | ----------------------------------- |
| `url`     | `string` | The URL to send the GET request to. |

## Returns

`string` - The response body content.

## Example

<CodeGroup>
  ```luau Example 1 theme={null}
  local html = httpget("https://google.com")
  print(html)
  ```

  ```luau Example 2 theme={null}
  local rawCode = httpget("https://raw.githubusercontent.com/user/script.lua")
  loadstring(rawCode)()
  ```
</CodeGroup>

<Tip>
  Bypasses standard Roblox HttpService limitations.
</Tip>
