Proxcy

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.

GEThttps://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/proxies

Or 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.

EndpointReturns
/api/proxies/httpHTTP proxies
/api/proxies/socks4SOCKS4 proxies
/api/proxies/socks5SOCKS5 proxies
/api/proxies/allAll valid proxies (protocol://ip:port)
curl -L https://proxcy.riyo.me/api/proxies/socks5

Response

A JSON object with a proxies array. Each item has the following fields:

FieldTypeDescription
ipstringProxy IP address.
portnumberProxy port.
protocolstringhttp, socks4, or socks5.
speed_msnumberMeasured latency in milliseconds.
is_validbooleanWhether the proxy passed the last check.
is_googlebooleanWhether the proxy can reach Google.
anonymity_levelstring | nulltransparent, anonymous, or elite.
country_codestring | nullISO 3166-1 alpha-2 code.
country_namestring | nullCountry name.
asnstring | nullAutonomous System Number.
organizationstring | nullNetwork / hosting organization.
checked_atstringISO 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.

Open dashboard