For the complete documentation index, see llms.txt. This page is also available as Markdown.

Protocols

The right protocol depends on your use case. The cURL examples below help you verify that your proxy is working correctly before integrating it into your application.

lightbulb-exclamation-on


HTTP

Suitable for most everyday use cases where encryption between client and proxy is not required.

curl -x http://username:password@host:port https://ipinfo.io

HTTPS

Use when you need encryption between your client and the proxy server.

curl -x https://username:password@host:port https://ipinfo.io

SOCKS5

A general-purpose proxy protocol for non‑HTTP applications like chat apps or game clients.

curl -x socks5h://username:password@host:port https://ipinfo.io
lightbulb-exclamation-on


Verifying Proxy

When the above command is executed successfully, ipinfo.io returns the IP address of the request source, along with additional information.

Output Example:

Last updated