Skip to content
View luis2404123's full-sized avatar

Sponsoring

@D4Vinci

Block or report luis2404123

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
luis2404123/README.md

Profile Views


BirdProxies

Website  Dashboard  Discord


About

BirdProxies provides high-performance proxy infrastructure built for scraping, automation, and data collection at scale. Direct ISP partnerships, clean IP pools, and sub-second response times across multiple regions.


Residential Proxies

  • Rotating residential IPs from a global pool
  • City and country-level targeting
  • Rotating and sticky sessions
  • HTTP, HTTPS & SOCKS5

ISP Proxies

  • Static IPs from real ISPs
  • Available in DE, US, UK, JP, HK, FR
  • Dedicated per-user allocation
  • Ideal for accounts and long sessions

Mobile Proxies

  • Real 4G/5G carrier IPs
  • Lowest detection rate available
  • Automatic IP rotation
  • Carrier-level targeting

Chrome Extension

  • One-click proxy switching
  • Per-tab proxy assignment
  • Sync proxies from dashboard
  • Auto-rotate on interval

Quick Start

curl -x http://USER:PASS@gate.birdproxies.com:7777 https://httpbin.org/ip
Python
import requests

proxies = {
    "http":  "http://USER:PASS@gate.birdproxies.com:7777",
    "https": "http://USER:PASS@gate.birdproxies.com:7777",
}

response = requests.get("https://httpbin.org/ip", proxies=proxies)
print(response.json())
Node.js
import { HttpsProxyAgent } from 'https-proxy-agent';

const agent = new HttpsProxyAgent('http://USER:PASS@gate.birdproxies.com:7777');
const res = await fetch('https://httpbin.org/ip', { agent });
console.log(await res.json());
Go
proxyURL, _ := url.Parse("http://USER:PASS@gate.birdproxies.com:7777")
client := &http.Client{
    Transport: &http.Transport{Proxy: http.ProxyURL(proxyURL)},
}
resp, _ := client.Get("https://httpbin.org/ip")

Open Source Tools

Repository Description
stealth-requests Stealth HTTP client with fingerprint rotation and anti-detection
stealth-fetch Drop-in fetch() replacement with automatic stealth headers
proxy-mcp MCP server — give AI agents proxy-powered web scraping
scraping-recipes Tested code recipes for bypassing Cloudflare, Akamai & more
proxy-checker Bulk proxy validation with protocol detection and geo lookup
proxy-benchmarks Benchmark proxy latency, throughput, and reliability
puppeteer-proxy-plugin Per-page proxy rotation for Puppeteer and Playwright

Popular repositories Loading

  1. proxy-benchmarks proxy-benchmarks Public

    Benchmark your proxies. Measure latency, throughput, and reliability across providers.

    TypeScript

  2. proxy-checker proxy-checker Public

    Fast bulk proxy checker with support for HTTP, SOCKS4, and SOCKS5.

    TypeScript

  3. proxy-mcp proxy-mcp Public

    MCP server for proxy-powered web scraping. Give AI agents the ability to scrape any website through proxies.

    TypeScript

  4. puppeteer-proxy-plugin puppeteer-proxy-plugin Public

    Seamless proxy integration for Puppeteer and Playwright with automatic rotation.

    TypeScript

  5. scraping-recipes scraping-recipes Public

    Tested, working code recipes for scraping real websites. Anti-bot bypass patterns for Cloudflare, Akamai, and more.

  6. stealth-fetch stealth-fetch Public

    Drop-in fetch() replacement with automatic anti-detection headers. Zero config, works everywhere.

    TypeScript