cURL

by Nickr5
Communicate with web servers - includes HTTP POST requests!
ID:112845
 
This library uses cURL (included with the library) to send requests to a web server. Currently supports http(s) GET, POST, PUT, and DELETE. Because the library uses the shell() command, games using it require trusted permissions.

The following code searches Bing and displays the results to the user:
client/verb
search(term as text)
if(curl.Http("http://www.bing.com/search", list(q = term), "out.html"))
usr << browse(file("out.html"))

This is only an example - there are better ways do this in BYOND without this library.