BlackieShieldSecure • Fast • Reliable
HomePricingDocs
DashboardContact
LoginGet Started

BlackieShield

Secure, private, and borderless VPN & proxy services. Empowering digital privacy with unmatched performance and global server coverage.

Growing User Base
99.9% Uptime Guarantee
Zero-Logs Policy

Quick Links

  • Home
  • Pricing & Plans
  • Dashboard
  • Checkout

Support & Resources

  • Support Center
  • Setup Guides
  • Contact Us
  • API Documentation

Legal & Contact

  • Privacy Policy
  • Terms of Service

Contact Us

support@blackieshield.com+254 791 218 989

Military-Grade Security

AES-256 encryption with WireGuard & OpenVPN protocols

Global Network

Servers in 10+ countries for optimal performance

Lightning Fast

Optimized routes for streaming and gaming

Follow us:

© 2026 BlackieShield by Blackie Networks. All rights reserved.

Built with ❤️ for digital privacy and freedom

Documentation

Get started with BlackieShield

Everything you need to set up and integrate BlackieShield proxy and VPN services into your workflow.

Proxy SetupVPN Setup (WireGuard)Browser ExtensionAPI Reference

Before you begin

  • Create an account at blackieshield.com/signup
  • Subscribe to a plan from the pricing page
  • Generate an API key from Dashboard > API Access

Proxy Setup

HTTP Proxy

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

SOCKS5 Proxy

Use 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"

VPN Setup (WireGuard)

Desktop (Windows / macOS / Linux)

Download the WireGuard client for your operating system, then import the configuration file from your BlackieShield dashboard.

  1. 1Install WireGuard from wireguard.com/install
  2. 2Log in to your BlackieShield dashboard and go to VPN > Download Config
  3. 3Open WireGuard and click "Import tunnel(s) from file"
  4. 4Select the downloaded .conf file and activate the tunnel

Mobile (iOS / Android)

Install the WireGuard app from your device's app store and scan the QR code from your dashboard.

  1. 1Install WireGuard from the App Store or Google Play
  2. 2Log in to your BlackieShield dashboard on a computer
  3. 3Go to VPN > Show QR Code
  4. 4Open WireGuard on your phone and tap + > Scan from QR Code

Browser Extension

Chrome / Edge / Firefox

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.

  1. 1Download the extension from your dashboard (Setup Guide section)
  2. 2Open your browser's extension management page (chrome://extensions or about:addons)
  3. 3Enable "Developer mode" and click "Load unpacked" (Chrome/Edge) or "Load Temporary Add-on" (Firefox)
  4. 4Select the downloaded extension folder
  5. 5Click the BlackieShield icon in your toolbar and sign in

API Reference

Authentication

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"

Proxy Authentication

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

Check Connection Status

Verify 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"
}

Good to know

  • Only one service (proxy or VPN) can be active at a time per account.
  • Switching services disconnects the currently active session before starting the new one.
  • Bandwidth quotas are enforced per billing cycle and do not roll over.
  • API keys are single-use per account. Generating a new key revokes the previous one.

Security

  • All connections use TLS encryption. VPN tunnels use the WireGuard protocol.
  • We maintain a zero-logs policy -- we do not log traffic content, DNS queries, or browsing activity.
  • IP whitelisting is available in Dashboard > API Access to restrict key usage to trusted addresses.
  • Rotate or revoke compromised API keys instantly from your dashboard.

Ready to get started?

Create an account, pick a plan, and start routing traffic through BlackieShield in minutes.

Create AccountTalk to support