Documentation

Everything you need to know about using VeProxy services

Getting Started

Welcome to VeProxy documentation. This guide will help you get started with our proxy services quickly and easily.

Prerequisites

  • A valid VeProxy account
  • Funds in your account balance
  • Basic understanding of HTTP/HTTPS/SOCKS5 protocols

Quick Start Guide

1

Create an Account

Sign up for a VeProxy account by visiting our registration page.

2

Add Funds

Add funds to your account balance using USDT (BEP20) cryptocurrency.

3

Choose a Plan

Select the proxy plan that best suits your needs from our pricing page.

4

Configure Your Proxy

Set up your proxy using the provided credentials and endpoints.

5

Start Using Proxies

Begin using your proxies for web scraping, data collection, or other use cases.

Proxy Setup

Learn how to set up and configure your proxies for various use cases and tools.

HTTP/HTTPS Proxy Setup

cURL Example

curl -x http://username:password@gateway.veproxy.com:8080 https://example.com

SOCKS5 Proxy Setup

cURL Example

curl -x socks5://username:password@gateway.veproxy.com:1080 https://example.com

Proxy Configuration for Popular Tools

Python Requests

import requests

proxies = {
    'http': 'http://username:password@gateway.veproxy.com:8080',
    'https': 'http://username:password@gateway.veproxy.com:8080'
}

response = requests.get('https://example.com', proxies=proxies)

Selenium

from selenium import webdriver
from selenium.webdriver.common.proxy import Proxy, ProxyType

proxy = Proxy()
proxy.proxy_type = ProxyType.MANUAL
proxy.http_proxy = "username:password@gateway.veproxy.com:8080"
proxy.ssl_proxy = "username:password@gateway.veproxy.com:8080"

capabilities = webdriver.DesiredCapabilities.CHROME
proxy.add_to_capabilities(capabilities)

driver = webdriver.Chrome(desired_capabilities=capabilities)

Authentication

Learn about the different authentication methods supported by VeProxy.

Basic Authentication

Most proxy endpoints use basic HTTP authentication with your username and password. You can find your credentials in the dashboard.

API Key Authentication

For API requests, you'll need to use your API key, which can be generated in your account settings.

API Request Example

curl -H "Authorization: Bearer YOUR_API_KEY" https://api.veproxy.com/v1/proxies

Need Help?

Our support team is available 24/7 to assist you with any questions or issues