This document provides documentation on using the RingLibCurl library to make HTTP requests from Ring programs. It describes how to make GET and POST requests using Curl objects initialized with curl_easy_init(). For GET requests, the URL is set with curl_easy_setopt() and curl_easy_perform() executes the request. For POST requests, the POSTFIELDS are also set using curl_easy_setopt() before performing the request. An example is given of logging into Facebook by making a POST request to the login form and passing the email and password fields.