Skip to content

GimmeProxy constantly crawls the internet for working proxies, so you don't have to.

License

Notifications You must be signed in to change notification settings

DevEnterpriseSoftware/GimmeProxy

Repository files navigation

GimmeProxy

GimmeProxy constantly crawls the internet for working proxies, so you don't have to.

This is a C# wrapper around the GimmeProxy API.

Getting started

Install GimmeProxy from NuGet:

Install-Package GimmeProxy

Random proxy getter methods are provided in a simple static class called GimmeProxyClient. Use the various GetRandomProxyAsync overloads to retrive a random proxy using the GimmeProxy API.

using GimmeProxy;

public class Program
{
  static async Task MainAsync(string[] args)
  {
    // Get a random proxy with no filtering.
    var randomProxy = await GimmeProxyClient.GetRandomProxyAsync();

    // Returns only proxies that support GET requests, HTTPS and were checked in last 3600 seconds.
    var requestOptions = new GimmeProxyRequest
    {
      SupportsPost = true,
      SupportsHttps = true,
      CheckedSecondsAgo = 3600,
    };

    // https://gimmeproxy.com/api/getProxy?post=true&supportsHttps=true&maxCheckPeriod=3600
    var url = request.ToString();
    
    // You can also sign-up for an API key for commercial use.
    requestOptions.ApiKey = "xxxxxxx";
    
    var anotherProxy = await GimmeProxyClient.GetRandomProxyAsync(requestOptions);
  }
}

The wrapper is fully documented. If you need more information, please refer to the GimmeProxy API page. To use this API for commercial use you need an API Key from GimmeProxy.