cloudflare unblock
Using Cloudbypass can help you easily bypass Cloudflare's verification

Currently supports bypassing JavaScript challenges, Turnstile Challenge, and Incapsula authentication products.
Provide the usage of HTTP API mode and Proxy mode, including interface address, request parameters, return processing, etc.

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 access process

1.Register an account

Register a Cloudbypass API account, click Register

Register a Cloudbypass proxy account, click Register

Cloudbypass accounts are interoperable. You only need to register one of them. Log in to the backend within 30 days after registration and click the "🎁Trial Activity" button to receive points and traffic for a novice trial.

2.Code Generator

Enter your request address into: Code Generator and test whether it is completed Bypass Cloudflare verification.

The V1 version comes with a Rotating Proxy pool. If it is accessible, there is no need to configure an Proxy;
The V2 version must be configured with a fixed IP or a time-effective IP, such as Cloudbypass Rotating Proxy. Set a time limit of more than 10 minutes. (pictured)

For technical assistance, please view the API documentation or Contact Customer Service for support.

3.Integrate Cloudbypass API

Integrate the Cloudbypass API code into your own code function module, complete the final debugging and use it.

4.Buy a package

Finally, choose a package to purchase according to your needs: price

To bypass Cloudflare verification, you need to purchase: 【Points Package】

Purchase Proxy traffic:【Rotating Data Center Proxy or Rotating Residential Proxy】

Bypassing Cloudflare requires points, and sometimes an proxy is required to assist. However, Cloudflare cannot be bypassed using only an proxy.

cloudflare bypass




Bypass Cloudflare bot verification

Bypassing Cloudflare robot restrictions to achieve efficient and stable data collection

Using the Cloudbypass API, you can easily bypass Cloudflare's bot verification without worrying about being identified as a scraper, even if you need to send 100,000 requests.

  • JS rendering
  • JSON automatic parsing
  • Custom Proxy
  • Custom request header
  • Customized request body
  • Custom query parameters
Get Cloudbypass API

Multi-language API support helps you easily skip Cloudflare verification

Cloudbypass API provides two request modes: HTTP API and Proxy. Developers can easily reconstruct old code through these two modes.

  • Curl
  • Python (SDK)
  • Go (SDK)
  • NodeJS (SDK)
  • Java
  • TypeScript / JavaScript
Get Cloudbypass API


Cloudbypass API request mode: HTTP API and Proxy



Tools to bypass cloudflare
Breakthrough Graphic Robot Verification

Bypassing Cloudflare is powerful and your requests are safe and secure

As a powerful HTTP request proxy tool, Cloudbypass API can not only help you easily break through Cloudflare robot verification, but more importantly, it provides comprehensive protection for the security of your requests.

  • Anti-bot robot
  • Bypass Cloudflare
  • Break through WAF
  • Set Referer
  • User-Agent
  • headless status
Get Cloudbypass API

Proxy request mode: cross-platform, high concurrency, low traffic

You can choose the appropriate agent software or service according to your needs, and deploy and configure it on different platforms.

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



代理请求模式:跨平台、并发高、省流量

Trusted by 1,200+ data collection companies and developers who have broken Cloudflare’s five-second shield

Bypass cloudflare verification
Shape
Application fields

Applicable to any webpage that needs to bypass Cloudflare anti-crawling verification

Data collector assistance

The Cloudbypass API provides a powerful proxy service that breaks through the website protection mechanism and ensures stable access to video content. Combined with the Cloudbypass API, you can efficiently collect picture frames in the video stream for data analysis, machine learning and other applications, bypass JS verification, verification code and other anti-crawling measures, and improve data collection efficiency.


Video picture data collection

Combined with the Cloudbypass API, the data collector can break through the website protection mechanism and achieve stable and efficient data capture. Through the proxy, browser fingerprint management and other functions provided by the API, bypass JS verification, verification code and other restrictions to ensure smooth collection of required data in a complex network environment.


Cross-border e-commerce data collection

Combined with the Cloudbypass API, cross-border e-commerce data collection can break through geographical restrictions and protection mechanisms and stably access global e-commerce platforms. Through dynamic IP proxy, bypass JS verification and verification code, ensure efficient capture of product information, price data and inventory status, and support cross-border e-commerce data analysis and decision optimization.

Travel ticketing data collection

Combined with the Cloudbypass API, travel visa ticketing data collection can bypass the protection mechanism and stably capture visa information, flights, hotels and ticketing data from major platforms around the world. Through proxy and browser fingerprint management, ensure efficient and accurate collection to help users optimize travel arrangements and data analysis.

Coupon data collection

Combined with the Cloudbypass API, coupon data collection can break through the protection mechanism and stably capture coupon information from major e-commerce platforms. Through dynamic IP proxy and browser fingerprint settings, bypass verification code and JS verification, ensure efficient acquisition of real-time discount data, and provide users with accurate discount information.

News novel data collection

Combined with the Cloudbypass API, news and novel data collection can break through the website protection mechanism and stably capture news and novel content from major platforms. Through dynamic IP proxy and browser fingerprint management, bypass verification code, JS verification and other restrictions, ensure efficient and accurate acquisition of real-time data.

Bypass cloudflare verification
Cloudbypass API Plan Prices

Bypass Cloudflare verification for more than 95% of websites, helping you collect data without worries

Starting from $0.35 per 1,000 verifications , no points will be deducted for failed requests, 1 point will be consumed for successful requests (3 points for Cloudbypass V2)

  • 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
Dynamic Residential IP Pack - High Quality, Seamless Connection

Provide overseas HTTP/Socks5 protocol support, precise positioning at the country/city level, no traffic expiration limit, unlimited bandwidth and concurrent requests, perfectly meet large-scale concurrent needs, and support cloud API extraction

Applicable to businesses with slightly lower IP quality (weight) requirements, including crawling, browsing, logging in, account management, likes and comments, etc.
(Starting from $0.35/GB)

Price:$ 18

15 GB
Data Center Proxy
Unit price:$1.22 /GB
Register to purchase

Price:$ 42

40 GB
Data Center Proxy
Unit price:$1.04 /GB
Register to purchase

Price:$ 88

100 GB
Data Center Proxy
Unit price:$0.88 /GB
Register to purchase

Price:$ 208

300 GB
Data Center Proxy
Unit price:$0.69 /GB
Register to purchase

Price:$ 489

800 GB
Data Center Proxy
Unit price:$0.61 /GB
Register to purchase

Price:$ 1056

2000 GB
Data Center Proxy
Unit price:$0.53 /GB
Register to purchase

Price:$ 1292

3000 GB
Data Center Proxy
Unit price:$0.43 /GB
Register to purchase

Price:$ 1736

5000 GB
Data Center Proxy
Unit price:$0.35 /GB
Register to purchase

Applicable to businesses with high requirements on IP quality, including store maintenance, account registration, questionnaire surveys, advertising, e-commerce evaluation, games and other application scenarios
(Starting from $1.11/GB)

Price:$ 21

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

Price:$ 46

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

Price:$ 93

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

Price:$ 163

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

Price:$ 303

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

Price:$ 703

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

price:$1.29 /GB

1000 GB
Residential Proxy
Unit price:9.3 rmb/G
Register to purchase

Price:$ 2223

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

Cloudbyass Product FAQ

To solve your usage problems, you can check the common answers here or contact customer service

How is the consumption of package points calculated?

A successful API request consumes 1 point, and a failed request does not consume points.
V1 version Each successful request consumes 1 point;
V2 version One successful request consumes 3 points (one API request consumes 1 point, V2 will consume 2 more points through JS polling, and the session duration is 10 minutes, the session state can be maintained without changing the proxy and part parameters, and unnecessary verification is avoided. That is to say, there is no additional charge for continuing requests within 10 minutes after the first request.)

Cloudbypass API points will be cleared if they are not used up within the validity period;
Recharges are calculated independently and have nothing to do with previous purchases, but the earliest purchased points will be consumed first.

The service mode provided by Cloudbypass API is that you submit an http request, and the API sends the request for you. This process makes it more difficult to identify your http request as a robot, and will only bypass the Cloudflare verification code as much as possible and let the Cloudflare verification code If it does not appear, you will directly access the target URL instead of automatically clicking on the Cloudflare verification code.

Cloudbypass API itself is very simple. You only need to send us the http request body sent to the target website, and we will forward 100% to x-cb-host.
You can use code generator to generate code snippets online for cURL and JavaScript , TypeScript, Java, Python and other commands make HTTP requests.
Cloudbypass API and Cloudbypass Proxy code example: Click to view

The V2 version can pass js polling (can render JS);
Currently the V2 version does not have a default proxy, you need to purchase the Cloudbypass Proxy, the V1 version comes with a Rotating Proxy

Session partitions are used to distinguish and manage cloudflare cookies. Sessions take effect after verification. After taking effect, proxy IP, fingerprint, etc. cannot be changed for 10 minutes. This is to ensure that no new verification is triggered during the session. As for account sessions, they need to be managed by yourself.
From 0-999, a user can have up to 1000 session partitions. After the first request is successful, the session partition will lock the proxy IP. You can submit other proxy IPs by modifying the session partition value. The session lock duration is ten minutes, and a successful request will refresh the duration.

Enter the request address into the code generator for testing. Test with Cloudbypass V1 first.
If V1 fails, you can test with Cloudbypass V2. You need to configure your own IP for V2. We have provided a test IP proxy traffic in the background. Click Cloudbypass Proxy IP Background to extract. It is recommended to set the extraction IP to a time limit of more than 10 minutes.

Currently, the maximum number of concurrent requests for all our packages is 30 times/s.

INSUFFICIENT_BALANCE This error means you have no Cloudbypass API credits.

You can purchase it in the Cloudbypass API backend:https://console.cloudbypass.com/#/api/login,or Contact Customer Service:Receive test points.

Error message:
"code": "CHALLENGE_LOCK_OCCUPIED"
"message": "The current part is being challenged, please wait for the lock to be released."

Error Description:
If the CHALLENGE_LOCK_OCCUPIED code appears, the following problems may exist::
The same part is used by multiple threads at the same time.
Multiple users use the same account and operate the same part.
The previous request occupies the verification lock and may not be completed due to timeout or human interruption.

Solution:
Wait for the lock to be released and try the request again later.
Replace part, the optional range is 0~999.

Solution:
1. Set a 10-minute validity period when extracting IP.
2. Change the proxy of the country or region. (Use multiple extraction points and IPs from different countries in turn. Using only IPs from the same country or region is prone to being restricted)

In this case, it is most likely that you need to configure a Proxy. Choose one of API mode and proxy mode to use our services. Domestic users recommend using API mode. Currently, only Proxys of the http protocol are supported.

Currently, browser automation with selenium and Puppeteer is not supported, because the browser is not used, only browser requests are simulated.

Do you offer monthly subscriptions?

We do not have monthly packages. Our pricing plan is based on traffic packages, with no time limit; you can purchase traffic packages according to your needs, buy as much as you need, and it will never expire.

Cloudbypass agent supports Alipay, USDT and other payment methods.

Rotating Proxy usage = upload + download data.

Please use the http://ipinfo.cloudbypass.com Query.

Cloudbypass Proxy provides two proxy networks: Rotating Residential Proxy and Rotating Data Center Proxy (data center proxy).
At Cloudbypass Proxy, you can buy all kinds of proxy forms you need in one place.

Cloudbypass proxy currently supports http and Socks5 proxy protocols.

Our pricing model is mainly based on traffic packages. For Rotating Residential Proxy and Rotating Data Center Proxy, we use a package model based on traffic packages with no time limit. You can sign up to request a free trial to evaluate our solutions and determine which traffic package you want to purchase.

Unfortunately, our agent cannot be directly connected under the IP environment of mainland China.
But you can deploy an Global network environment (such as a server in Hong Kong) and use proxies in the Global network.

On the computer side, you can deploy a global NPV accelerator for auxiliary use;
On the mobile side, you can deploy a soft route, and the mobile phone is connected to the router WIFI network in an Global environment;
If you have not set up an Global The ability of the network environment, please stop purchasing, we do not provide refunds for directly connected Chinese users.

CloudbyPass Help Center

Common Issues with Cloudbypass API: Point rules, V2 version, maximum concurrency. Global IPs billed by traffic package, support multiple payment methods. Tutorials cover bypassing Cloudflare, HTTP API, global Rotating Proxy, Anti-Detection Browser, and multi-platform configuration.

Common Issues with Cloudflare Bypass API
Common Issues with Cloudflare Bypass API

Cloudbypass API Points Usage Concise Rules: 1 point per successful request, V2 version consumes 3 points. Points expire monthly and reset; recharge is separate. V2 supports JS polling, requires time-limited Proxy purchase. Max concurrent requests: 30/s. 403 or Access Denied may require Proxy configuration. Not compatible with selenium or Puppeteer; can be used with Anti-Detection Browsers and collectors.

View More
Common Issues with Cloudbypass Global Proxy
Common Issues with Cloudbypass Global Proxy

CloudbyPass global Proxy is billed by data package, never expires. Supports payment methods such as Alipay, USDT. Data package usage includes upload + download data. Provides dynamic residential and Data Center Proxys, supports http and Socks5 proxy protocols. Free trial available after registration. Chinese users need to use it in Global environments as direct connection to mainland China IP is not supported.

View More
Tutorial for Using CloudBypass API/Proxy
Tutorial for Using CloudBypass API/Proxy

Bypass Cloudflare effortlessly with Cloudbypass API for unhindered web data collection. It offers HTTP API and global Rotating Proxy services, supporting customizable browser fingerprints like Referer and UA for enhanced control. Cloudbypass IP service settings cover FAQs, IP extraction tutorials, Anti-Detection Browsers, computer browsers, and mobile platforms. Detailed guides include configurations for various browsers and platforms.

View More
Breaking through Cloudflare's 5-second anti-climbing shield

What users say about our services