cloudflare unblock
Cloudbypass enables seamless Cloudflare verification bypass

It supports bypassing Cloudflare JavaScript Challenges, Turnstile, and Incapsula verification.
Cloudbypass offers both HTTP API and Proxy modes, with clear documentation for integration and response handling.

Visit https://opensea.io/path/to/target?a=4, the following is an example of Curl request:

                                             
# Use curl to request https://opensea.io/category/memberships
# curl -X GET "https://opensea.io/category/memberships"
                                                
#Using Cloudbypass API request example
# Use Cloudbyapss API to request
curl -X GET "https://api.cloudbypass.com/category/memberships" ^
-H "x-cb-apikey: YOUR_API_KEY" ^
-H "x-cb-host: opensea.io" -k
                                                   
# Use CloudbypassProxy request example
# Use Cloudbyapss Proxy to request
curl -X GET "https://opensea.io/category/memberships" -x "http://YOUR_API_KEY:@proxy.cloudbypass.com:1087" -k
                                             
                                         
Detailed documentation

Visit https://opensea.io/path/to/target?a=4, the following is an example of Python request:

                                             
// Use python to request https://opensea.io/category/memberships
import requests

"""
# Code example before modification
# original code
url = "https://opensea.io/category/memberships"
response = requests.request("GET", url)
print(response.text)
print(response.status_code,response.reason)
# (403, 'Forbidden')
"""

#Using Cloudbypass API request example
# Use Cloudbyapss API to request
url = "https://api.cloudbypass.com/category/memberships"

headers = {
     'x-cb-apikey': 'YOUR_API_KEY',
     'x-cb-host': 'opensea.io',
}

response = requests.request("GET", url, headers=headers)

print(response.text)

// Use python to request https://opensea.io/category/memberships
import requests

"""
# Code example before modification
# original code
url = "https://opensea.io/category/memberships"
response = requests.request("GET", url)
print(response.text)
print(response.status_code,response.reason)
# (403, 'Forbidden')
"""

#Using Cloudbypass API request example
# Use Cloudbyapss API to request
url = "https://api.cloudbypass.com/category/memberships"

headers = {
     'x-cb-apikey': 'YOUR_API_KEY',
     'x-cb-host': 'opensea.io',
}

response = requests.request("GET", url, headers=headers)

print(response.text)

                                         
Detailed documentation

Access https://opensea.io/category/memberships, request example:

                                            
// # Go Modules
// require github.com/go-resty/resty/v2 v2.7.0
package main
                                                
import (
    "fmt"
    "github.com/go-resty/resty/v2"
)
                                                
func main() {
    client := resty.New()
                                                
    client.Header.Add("X-Cb-Apikey", "/* APIKEY */")
    client.Header.Add("X-Cb-Host", "opensea.io")
                                                
 resp, err := client.R().Get("https://api.cloudbypass.com/category/memberships")
                                                
    if err != nil {
        fmt.Println(err)
        return
    }
                                                
    fmt.Println(resp.StatusCode(), resp.Header().Get("X-Cb-Status"))
    fmt.Println(resp.String())
}                                                
                                            
                                        
Detailed documentation

Visit https://opensea.io/path/to/target?a=4, the following is an example Nodejs request:

                                             
// Use javascript to request https://opensea.io/category/memberships
const axios = require('axios');

/*
// Code example before modification
//original code
const url = "https://opensea.io/category/memberships";
axios.get(url, {})
   .then(response => console.log(response.data))
   .catch(error => console.error(error));
*/

// Example of request using Cloudbypass API
// Use Cloudbyapss API to request
const url = "https://api.cloudbypass.com/path/to/target?a=4";
const headers = {
   'x-cb-apikey': 'YOUR_API_KEY',
   'x-cb-host': 'www.example.com',
};

axios.get(url, {}, {headers: headers})
   .then(response => console.log(response.data))
   .catch(error => console.error(error));
  
# Use javascript to request https://opensea.io/category/memberships
const axios = require('axios');

//Request example using CloudbypassProxy
// Use Cloudbyapss Proxy to request
const url = "https://opensea.io/category/memberships";
const config = {
     proxy: {
         host: 'proxy.cloudbypass.com',
         port: 1087,
         auth: {
             username: 'YOUR_API_KEY',
             password: ''
             // Use a custom proxy
             // password: 'proxy=http:CUSTOM_PROXY:8080'
         }
     }
};

axios.get(url, config)
   .then(response => console.log(response.data))
   .catch(error => console.error(error));
                                             
                                         
Detailed documentation

Visit https://opensea.io/path/to/target?a=4, the following is a Java request example:

                                             
// Use java to request https://opensea.io/category/memberships
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;

public class Main {
     public static void main(String[] args) throws Exception {
         /*
             // Code example before modification
             //original code
             String url = "https://opensea.io/category/memberships";
             HttpClient client = HttpClient.newHttpClient();
             HttpRequest request = HttpRequest.newBuilder()
                             .uri(URI.create(url))
                             .GET(HttpRequest.BodyPublishers.noBody())
                             .build();

             HttpResponse response = client.send(request, HttpResponse.BodyHandlers.ofString());
             System.out.println(response.body());
         */

         // Example of request using Cloudbypass API
         // Use Cloudbyapss API to request
         String url = "https://api.cloudbypass.com/category/memberships";
         HttpClient client = HttpClient.newHttpClient();
         HttpRequest request = HttpRequest.newBuilder()
                 .uri(URI.create(url))
                 .header("x-cb-apikey", "YOUR_API_KEY")
                 .header("x-cb-host", "opensea.io")
                 .GET(HttpRequest.BodyPublishers.noBody())
                 .build();
                
         //Request example using CloudbypassProxy
         // Use Cloudbyapss Proxy to request
         String url = "https://opensea.io/category/memberships";
         HttpClient client = HttpClient.newBuilder()
                 .proxy(HttpClient
                         .ProxySelector
                         // Use a custom proxy
                         //.of(URI.create("http://YOUR_API_KEY:proxy=http:CUSTOM_PROXY:[email protected]:1087")))
                         .of(URI.create("http://YOUR_API_KEY:@proxy.cloudbypass.com:1087")))
                 .build();
         HttpRequest request = HttpRequest.newBuilder()
                 .uri(URI.create(url))
                 .GET()
                 .build();

         HttpResponse response = client.send(request, HttpResponse.BodyHandlers.ofString());
         System.out.println(response.body());
     }
}
                                
                                         
Detailed documentation




Cloudbypass Onboarding Workflow

1.Create Your Account

Register a Cloudbypass API account — Sign Up Now

Register a Cloudbypass Proxy account — Sign Up Now

Cloudbypass uses a unified account system — registering once enables both API and Proxy access. Log in within 30 days and click the 🎁 Trial Activity button to claim free credits and traffic.

2.Test with the Code Generator

Enter your target URL in the Code Generator to test Cloudflare verification bypass.

V1 includes a built-in rotating IP pool — no proxy setup is required if accessible.
TV2 requires a fixed or time-based IP. When using Cloudbypass rotating IPs, set validity to at least 10 minutes.

For assistance, see the API documentation or contact Cloudbypass Support.

3.Integrate the Cloudbypass API

Integrate the Cloudbypass API into your application, complete debugging, and deploy to production.

4.Select a Pricing Plan

Choose a plan based on your usage — View Pricing

To bypass Cloudflare’s 5-second challenge, purchase a Points Plan.

For proxy traffic, select a Rotating Datacenter or Rotating Residential proxy plan.

Cloudflare bypass consumes points and may require proxy support. A proxy alone cannot bypass Cloudflare.

cloudflare bypass Onboarding Workflow




Bypass Cloudflare bot protection for large-scale web scraping

Bypass Cloudflare Bot Protection for Stable, High-Volume Data Collection

Cloudbypass API allows you to reliably bypass Cloudflare bot detection and verification layers. Even at high request volumes—up to 100,000 concurrent requests—your traffic remains stable and indistinguishable from real user behavior.

  • JavaScript Rendering Support
  • Automatic JSON Response Parsing
  • Custom Proxy Integration
  • Fully Customizable Request Headers
  • Custom Request Payloads
  • Flexible Query Parameter Control
Get Cloudbypass API

Multi-Language API Support for Seamless Cloudflare Bypass

Cloudbypass API provides two flexible integration options—HTTP API and Proxy mode—allowing developers to quickly integrate or migrate existing scraping and automation workflows with minimal refactoring.

  • cURL
  • Python SDK
  • Go SDK
  • Node.js SDK
  • Java
  • TypeScript / JavaScript
Get Cloudbypass API


Cloudbypass API integration modes: HTTP API and Proxy



Advanced tools to bypass Cloudflare anti-bot protection
Advanced Cloudflare bot verification bypass technology

Advanced Cloudflare Bypass with Full Request-Level Control

Cloudbypass API functions as a secure HTTP request proxy, enabling reliable Cloudflare bypass while giving you granular control over every request, fingerprint, and execution environment.

  • Advanced Anti-Bot Evasion Engine
  • Automated Cloudflare Verification Bypass
  • Custom User-Agent Management
  • Dynamic Referer Header Control
  • Bypass WAF and CDN Restrictions
  • Headless Browser State Management
Get Cloudbypass API

Proxy Mode for Cross-Platform, High-Concurrency Data Access

Deploy Cloudbypass Proxy mode with your preferred proxy software across multiple operating systems, enabling high-concurrency requests while minimizing bandwidth usage and infrastructure overhead.

  • Windows
  • macOS
  • Linux
  • CentOS
  • iOS
  • Android
Get Cloudbypass API



Proxy mode with cross-platform support and high concurrency

Trusted by over 1,200 big data search, web scraping, and data intelligence teams, as well as developers using Cloudbypass to bypass Cloudflare’s 5-second challenge.

Bypass cloudflare verification
Shape
Use Cases

Built for scenarios requiring Cloudflare and similar verification bypass, enabling stable, scalable web data collection with Cloudbypass

Data Collection Assistant

Powered by the Cloudbypass API, it supports reliable data extraction with proxy rotation, fingerprint simulation, and JavaScript challenge bypass.


Video & Image Data Collection

Access video and image content via a large proxy pool. The Cloudbypass API ensures stable acquisition for machine learning, content monitoring, and data analysis.


E-Commerce Data Collection

Collect product listings, pricing, and inventory data from global platforms. Cloudbypass API enables stable access for market analysis and pricing optimization.

Travel, Visa & Ticketing Data Collection

Retrieve structured data across flights, hotels, ticketing, and visa services. Cloudbypass ensures consistent access for analytics, forecasting, and industry insights.

Coupon & Promotion Data Collection

Monitor discounts and promotions across major e-commerce platforms with Cloudbypass API for real-time tracking and trend analysis.

News & Online Content Data Collection

Enable continuous collection of news and serialized content. Cloudbypass delivers structured, validated data for content analysis and update pipelines.

Bypass cloudflare verification
Cloudbypass API Pricing Plans

Bypass over 95% of Cloudflare verification challenges and scale data collection with ease.

Starting at $0.35 per 1,000 successful verifications.
Failed requests are not charged.
Each successful request consumes 1 credit (Cloudbypass V2 consumes 3 credits).

  • Basic

  • $49/Month

  •  Integral:80000
  •  Validity: 1 month (30 days)
  •  Concurrency: 20 times/s
  • Standard

  • $79/Month

  •  Integral: 300000
  •  Validity: 1 month (30 days)
  •  Concurrency: 20 times/s
  • Premium

  • $129/Month

  •  Integral:1000000
  •  Validity: 1 month (30 days)
  •  Concurrency: 30 times/s
  • Professional

  • $259/Month

  •  Integral:2200000
  •  Validity: 1 month (30 days)
  •  Concurrency: 30 times/s
Cloudbypass Rotating Proxy Packages – Built for Cloudflare Bypass

Enterprise-grade HTTP and SOCKS5 rotating proxies with country and city targeting, unlimited bandwidth, and no concurrency limits. Fully integrated with the Cloudbypass API for fast, developer-friendly deployment

Designed for moderate IP quality requirements — suitable for Cloudflare bypass proxy scenarios where IP reputation and trust level are not critical. Ideal for web crawling, general browsing, automated logins, account scaling, and engagement automation (likes, comments, interactions).
Starting at $0.35/GB

Price:$ 18

15 GB
DataCenter Proxy
Unit price:$1.22 /GB
Sign up to purchase

Price:$ 42

40 GB
DataCenter Proxy
Unit price:$1.04 /GB
Sign up to purchase

Price:$ 88

100 GB
DataCenter Proxy
Unit price:$0.88 /GB
Sign up to purchase

Price:$ 208

300 GB
DataCenter Proxy
Unit price:$0.69 /GB
Sign up to purchase

Price:$ 489

800 GB
DataCenter Proxy
Unit price:$0.61 /GB
Sign up to purchase

Price:$ 1056

2000 GB
DataCenter Proxy
Unit price:$0.53 /GB
Sign up to purchase

Price:$ 1292

3000 GB
DataCenter Proxy
Unit price:$0.43 /GB
Sign up to purchase

Price:$ 1736

5000 GB
DataCenter Proxy
Unit price:$0.35 /GB
Sign up to purchase

Built for high IP quality and reputation-sensitive use cases — delivering stronger IP trust, higher stability, and long-session reliability for Cloudflare-protected environments. Ideal for store management, account registration, surveys, advertising workflows, e-commerce reviews, and gaming automation.
Starting at $1.11/GB

Price:$ 21

8 GB
Residential Proxy
Unit price:$2.57 /GB
Sign up to purchase

Price:$ 46

20 GB
Residential Proxy
Unit price:$2.29 /GB
Sign up to purchase

Price:$ 93

50 GB
Residential Proxy
Unit price:$1.86 /GB
Sign up to purchase

Price:$ 163

100 GB
Residential Proxy
Unit price:$1.63 /GB
Sign up to purchase

Price:$ 303

200 GB
Residential Proxy
Unit price:$1.51 /GB
Sign up to purchase

Price:$ 703

500 GB
Residential Proxy
Unit price:$1.40 /GB
Sign up to purchase

price:$1.29 /GB

1000 GB
Residential Proxy
Unit price:$1.29 /GB
Sign up to purchase

Price:$ 2223

2000 GB
Residential Proxy
Unit price:$1.11 /GB
Sign up to purchase

Cloudbypass Product FAQ

Find answers to common usage questions or contact our technical support team for assistance.

How are Cloudbypass API credits consumed?

Each successful API request consumes credits, while failed requests do not deduct any credits.
V1: Each successful request consumes 1 credit.
V2: Each successful request consumes 3 credits. One credit is used for the API request itself, and two additional credits are consumed during JavaScript polling. The session remains valid for 10 minutes. During this period, the same proxy and session parameters can be reused to avoid repeated Cloudflare verification. This means no additional credits are charged for subsequent requests within the same session window.

Cloudbypass API credits expire if not used within their validity period. Each recharge is calculated independently, and credits are consumed on a first-in, first-out basis.

Cloudbypass operates as a request-forwarding service. You submit an HTTP request to the Cloudbypass API, and the API executes the request on your behalf. This approach significantly reduces the likelihood of your traffic being identified as automated. The system focuses on preventing Cloudflare challenges from being triggered, allowing direct access to the target URL instead of programmatically interacting with challenge pages.

The Cloudbypass API is designed to be simple and developer-friendly. You only need to submit the HTTP request intended for the target website, and Cloudbypass will forward it exactly as provided.
You can use the online code generator to generate request examples in cURL, JavaScript, TypeScript, Java, Python, and more.
Cloudbypass API and Proxy integration examples are available here: View code examples

Cloudbypass V2 supports JavaScript rendering and polling, making it suitable for more advanced Cloudflare challenges.
V2 does not include a default proxy. You must use a Cloudbypass Proxy with V2.
V1 includes a built-in rotating proxy by default.

Session partitions are used to manage Cloudflare cookies and verified sessions. Once a session is successfully verified, the proxy IP, browser fingerprint, and related parameters must remain unchanged for 10 minutes. This prevents additional Cloudflare challenges from being triggered during the session.

Session partition values range from 0 to 999, allowing up to 1,000 concurrent session partitions per account. After a successful request, the proxy IP is locked to the session partition. Changing the partition value allows you to switch proxies. Each successful request refreshes the 10-minute session duration.

Start by testing your target URL using the code generator with Cloudbypass V1.
If V1 fails, switch to Cloudbypass V2 and configure your own proxy IP. A test proxy is available in the backend for validation. It is recommended to set the proxy extraction duration to more than 10 minutes.

All Cloudbypass API plans currently support up to 30 concurrent requests per second.

This error indicates that your Cloudbypass API account has no remaining credits.

You can purchase credits in the Cloudbypass API console: Cloudbypass API Console, or contact customer support to request test credits.

Error description:
This error occurs when the current session partition is already processing a Cloudflare challenge.

Common causes:
The same session partition is used concurrently by multiple threads.
Multiple users are operating on the same account and partition.
A previous request is still holding the verification lock.

Recommended solutions:
Wait for the lock to be released and retry the request.
Switch to a different session partition (range: 0–999).

Recommended actions:
1. Set the proxy IP extraction duration to at least 10 minutes.
2. Switch to proxy IPs from different countries or regions. Using IPs from the same region repeatedly may increase the risk of restriction.

These errors usually indicate that a proxy is required. You can use either API mode or Proxy mode to access Cloudbypass services. API mode is recommended for domestic users. Currently, only HTTP proxies are supported.

Browser automation tools such as Selenium and Puppeteer are not supported. Cloudbypass operates at the HTTP request level and simulates browser requests without launching a real browser.

Do you offer monthly subscription plans?

Cloudbypass does not use monthly subscriptions. All Cloudbypass Proxy services follow a traffic-based pricing model with no expiration. You can purchase traffic packages on demand, and unused bandwidth will never expire.

Cloudbypass Proxy supports multiple payment methods, including Alipay, USDT, and other supported options depending on your region.

For Cloudbypass Rotating Proxies, traffic usage is calculated based on the total volume of uploaded and downloaded data through the proxy connection.

IP geolocation results may vary depending on the detection database used. Please verify the proxy IP location using the official Cloudbypass IP check tool: http://ipinfo.cloudbypass.com .

Cloudbypass offers two core proxy networks: Rotating Residential Proxies and Rotating Datacenter Proxies. Both proxy types are designed for Cloudflare bypass scenarios and can be managed from a single unified platform.

Cloudbypass Proxy currently supports both HTTP and SOCKS5 proxy protocols, ensuring compatibility with most scraping tools, browsers, and automation frameworks.

Cloudbypass Proxy uses a traffic-based billing model for both rotating residential and datacenter proxies. All traffic packages do not expire. You may request a free trial to evaluate Cloudflare bypass performance before purchasing.

Direct connections from mainland China IP addresses are not supported. To use Cloudbypass Proxy services, you must deploy a global network environment, such as a server or VPS located in Hong Kong or other overseas regions.

Desktop users may connect via a global network accelerator, while mobile users can access through a router configured with a global network environment.

If you are unable to set up a compatible global network environment, please do not proceed with a purchase. Refunds are not available for unsupported direct connections.

Cloudbypass Help Center

Cloudbypass API FAQs cover credit rules, Version 2 updates, and concurrency limits. Overseas IP traffic is billed by data usage and supports multiple payment methods. Guides include Cloudflare bypass, HTTP API integration, global rotating proxies, fingerprint browsers, and multi-platform setup.

Cloudflare Bypass API: Common Issues & Usage Rules

Cloudbypass API credit rules: each successful request uses 1 credit, while Version 2 consumes 3 credits. Credits reset monthly and are separate from account balance. Version 2 supports JavaScript challenge polling and requires time-based proxy plans. Maximum concurrency is 30 requests per second. HTTP 403 or Access Denied errors typically require proxy configuration. The API is not compatible with Selenium or Puppeteer, but works with anti-detection browsers and data collection tools.

View More
Cloudbypass Global Proxy: Common Issues & Billing

Cloudbypass global proxy services are billed by data packages with no expiration. Supported payment methods include Alipay and USDT. Data usage is calculated based on total upload and download traffic. The service provides rotating residential IPs and high-performance data center proxies, supporting HTTP and SOCKS5 protocols. A free trial is available after registration. For users in mainland China, usage requires a global network environment, as direct mainland IP access is not supported.

View More
Cloudbypass API & Proxy Integration Tutorials

Use Cloudbypass to bypass Cloudflare protection and enable uninterrupted web data collection. The platform offers both HTTP API access and global rotating proxy services, supporting customizable browser fingerprints such as User-Agent and Referer headers. Documentation includes IP usage FAQs, IP extraction guides, anti-detection browser integration, desktop browser setups, and mobile platform configurations, with step-by-step tutorials for multiple environments.

View More
Bypassing Cloudflare 5-second challenge and anti-bot protection

Trusted by developers and data professionals worldwide

Latest Articles

Cloudbypass API - Bypass Cloudflare with Ease for Uninterrupted Web Scraping