Proxcy API
The Proxcy API redirects to the GitHub Raw dataset used by the dashboard. Send a GET request to /api/proxies and follow the redirect to get every checked HTTP, SOCKS4, and SOCKS5 proxy — each with country, latency, protocol, anonymity level, and Google reachability.
https://proxcy.riyo.me/api/proxies- No auth — no API key needed
- CORS enabled — call from the browser
- Cached redirect — large payload stays off Vercel
Quick start
Fetch the full dataset with curl:
curl -L https://proxcy.riyo.me/api/proxiesOr from JavaScript in the browser:
const res = await fetch("https://proxcy.riyo.me/api/proxies");
const { proxies } = await res.json();
// proxies: Array<{ ip, port, protocol, speed_ms, ... }>Raw lists (per protocol)
Prefer a flat text list over JSON? These endpoints redirect to GitHub Raw, which returns one ip:port per line as text/plain with CORS enabled.
| Endpoint | Returns |
|---|---|
| /api/proxies/http | HTTP proxies |
| /api/proxies/socks4 | SOCKS4 proxies |
| /api/proxies/socks5 | SOCKS5 proxies |
| /api/proxies/all | All valid proxies (protocol://ip:port) |
curl -L https://proxcy.riyo.me/api/proxies/socks5Response
A JSON object with a proxies array. Each item has the following fields:
| Field | Type | Description |
|---|---|---|
| ip | string | Proxy IP address. |
| port | number | Proxy port. |
| protocol | string | http, socks4, or socks5. |
| speed_ms | number | Measured latency in milliseconds. |
| is_valid | boolean | Whether the proxy passed the last check. |
| is_google | boolean | Whether the proxy can reach Google. |
| anonymity_level | string | null | transparent, anonymous, or elite. |
| country_code | string | null | ISO 3166-1 alpha-2 code. |
| country_name | string | null | Country name. |
| asn | string | null | Autonomous System Number. |
| organization | string | null | Network / hosting organization. |
| checked_at | string | ISO 8601 timestamp of the last check. |
Example response:
{
"proxies": [
{
"ip": "8.211.194.78",
"port": 31433,
"protocol": "socks5",
"speed_ms": 6500,
"is_valid": true,
"is_google": false,
"anonymity_level": "elite",
"country_code": "GB",
"country_name": "United Kingdom",
"asn": "AS45102",
"organization": "Alibaba Cloud",
"checked_at": "2026-07-10T12:00:00Z"
}
]
}Frequently asked questions
Is the Proxcy API free?+
Yes. The API is free and requires no API key. Send a GET request to /api/proxies and follow its redirect to get the full dataset as JSON.
Can I call the API from a browser?+
Yes. The endpoint sends Access-Control-Allow-Origin: *, so it works in client-side JavaScript from any origin without a CORS proxy.
How fresh is the data?+
The endpoint redirects to the live GitHub Raw dataset. GitHub may cache the raw file for a few minutes while the collector updates it.
What proxy protocols are included?+
HTTP, SOCKS4, and SOCKS5. Each record includes the protocol, latency, country, anonymity level, and whether the proxy can reach Google.
Explore the data visually
Filter the same proxies by country, latency, and protocol in the dashboard, or see common proxy use cases.