Parameters
Returns
string - The response body content.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
httpget(url: string): string
| Parameter | Type | Description |
|---|---|---|
url | string | The URL to send the GET request to. |
string - The response body content.
local html = httpget("https://google.com")
print(html)
local rawCode = httpget("https://raw.githubusercontent.com/user/script.lua")
loadstring(rawCode)()