Shared host and port
Everyone connects to proxy.proxycharm.com. Your username is what isolates you.
HTTPS CONNECT
Pick a country, pay for a plan, then paste host, port, and a login into your client. Traffic goes through the Proxxy Charm gateway. You never see the upstream.
What people run through a static exit
One gateway, your existing tools
Keep the HTTP client you already have. Set the Proxxy Charm proxy URL and you're done. No SDK, no list of IPs to babysit. We ship HTTPS CONNECT.
curl -x http://USERNAME:PASSWORD@proxy.proxycharm.com:10000 https://api.ipify.orgimport requests
proxies = {
"http": "http://USERNAME:PASSWORD@proxy.proxycharm.com:10000",
"https": "http://USERNAME:PASSWORD@proxy.proxycharm.com:10000",
}
response = requests.get("https://api.ipify.org", proxies=proxies, timeout=30)
print(response.text)const { fetch, ProxyAgent } = require("undici");
const agent = new ProxyAgent("http://USERNAME:PASSWORD@proxy.proxycharm.com:10000");
const response = await fetch("https://api.ipify.org", { dispatcher: agent });
console.log(await response.text());package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
proxy, err := url.Parse("http://USERNAME:PASSWORD@proxy.proxycharm.com:10000")
if err != nil {
panic(err)
}
client := &http.Client{Transport: &http.Transport{Proxy: http.ProxyURL(proxy)}}
resp, err := client.Get("https://api.ipify.org")
if err != nil {
panic(err)
}
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}<?php
$ch = curl_init("https://api.ipify.org");
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_PROXY => "proxy.proxycharm.com:10000",
CURLOPT_PROXYUSERPWD => "USERNAME:PASSWORD",
]);
echo curl_exec($ch);
curl_close($ch); Everyone connects to proxy.proxycharm.com. Your username is what isolates you.
Host, port, username, and password live on Proxies after we assign an IP.
The residential address shows once the slot is filled. That is the exit, not the hostname.
You pay in the dashboard. Receipts stay on Stripe hosted pages.
The product
Same residential exit until you ask us to replace it. You pick the country when you buy.
You talk to Proxxy Charm. We talk to the upstream. Their host and password never land in your dashboard.
If we replace an IP, username and password do not change. Reconnect and you are on the new exit.
Built for a client, not a spreadsheet
The gateway checks your Proxxy Charm login and opens CONNECT to the assigned exit. The rows below are examples, not a live probe.
Have a look around
Plans are a number of static IPs, billed monthly or yearly. You pick countries after you sign in.
See pricingHost, port, HTTPS CONNECT, and snippets you can paste into cURL, Python, Node.js, Go, and PHP.
Read the quickstartCreate an account, choose a plan, pick countries, and pay on Stripe. IPs show up after payment confirms.
Open the dashboardCommon questions
Proxxy Charm sells static residential proxy IPs. You get our host, port, and a unique login. We assign a residential exit after you pay, and we sit on the path so you never talk to the upstream provider.
No. You subscribe to a number of static IPs, not a bandwidth pool. The same exit stays yours until we replace it. We don't charge by the gigabyte.
The exit is a residential address, not a cloud range. Sites can block a whole datacenter list in one go. A home-looking IP is harder to toss out that way.
You sign in, pick a plan, choose a country for each IP, and pay on Stripe Checkout. We assign IPs after payment confirms. Renewals keep the same exits.
A Proxxy Charm hostname, a shared port, a username and password, and the residential exit IP for each assigned slot. Point HTTPS CONNECT at our gateway. Do not use a vendor hostname.
The assignment and login stay the same. The old exit is taken out of service. Reconnect your client to pick up the new residential address. You will see it on Proxies.
Not yet. Today we ship HTTPS CONNECT. If your client only speaks SOCKS, it will not work against this gateway.
No. Upstream host, username, and password never appear in customer payloads. You only get Proxxy Charm credentials and the residential exit IP.
Create an account, pick a plan, paste the Proxxy Charm host and login. No sales call.