http
loadstring
Loads and compiles code from an external website. Must be outside of a function in the documented format on a separate line.
request
Creates a new request to a specified URL. Supported methods: "GET", "POST".
addHeader
Adds a header to the request.
setUserAgent
Sets the User-Agent header for the request.
setConnectionTimeout
Sets the connection timeout for the request.
setReadTimeout
Sets the read timeout for the request.
setContent
Sets the content to be sent with a POST request.
fetch
Executes the request.
code
Returns the response code for a request.
string
Returns the data from a request as a string.
json
Returns the data from a request as json.
Last updated