Everything you need to set up and integrate BlackieShield proxy and VPN services into your workflow.
Route browser or application traffic through BlackieShield HTTP proxy servers. Works with any client that supports standard HTTP proxy settings.
# Set your shell proxy (replace with your credentials)
export http_proxy="http://YOUR_API_KEY@proxy.blackieshield.com:8080"
export https_proxy="http://YOUR_API_KEY@proxy.blackieshield.com:8080"
# Verify your proxy connection
curl -x http://YOUR_API_KEY@proxy.blackieshield.com:8080 https://api.ipify.orgUse SOCKS5 for full TCP-level proxying. Ideal for applications, torrent clients, and tools that need protocol-level tunnelling.
# SOCKS5 with curl
curl --socks5 proxy.blackieshield.com:1080 \
--proxy-user YOUR_API_KEY: \
https://api.ipify.org
# SOCKS5 environment variable
export ALL_PROXY="socks5://YOUR_API_KEY@proxy.blackieshield.com:1080"Download the WireGuard client for your operating system, then import the configuration file from your BlackieShield dashboard.
Install the WireGuard app from your device's app store and scan the QR code from your dashboard.
The BlackieShield browser extension provides one-click proxy configuration. It automatically manages your API key, whitelists your IP, and toggles proxy settings without touching system-level config.
All API requests require a valid API key passed in the Authorization header. Generate and manage keys from your dashboard.
# Include your API key in every request
curl -X GET "https://api.blackieshield.com/proxy/status" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"When connecting through the proxy, pass your API key via the Proxy-Authorization header.
# Proxy with Bearer token
curl -x http://proxy.blackieshield.com:8080 \
-H "Proxy-Authorization: Bearer YOUR_API_KEY" \
https://api.ipify.orgVerify your proxy or VPN session is active and see remaining quota.
curl -X GET "https://api.blackieshield.com/proxy/status" \
-H "Authorization: Bearer YOUR_API_KEY"
# Response
{
"status": "active",
"service": "proxy",
"server": "us-east-1",
"bandwidthUsed": "1.2 GB",
"bandwidthRemaining": "48.8 GB"
}Create an account, pick a plan, and start routing traffic through BlackieShield in minutes.