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

Provides detailed usage methods 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 ScrapingbypassAPI request example
# Use Cloudbyapss API to request
curl -X GET "https://api.scrapingbypass.com/category/memberships" ^
-H "x-cb-apikey: YOUR_API_KEY" ^
-H "x-cb-host: opensea.io" -k
                                                   
# Use ScrapingbypassProxy request example
# Use Cloudbyapss Proxy to request
curl -X GET "https://opensea.io/category/memberships" -x "http://YOUR_API_KEY:@proxy.scrapingbypass.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 ScrapingbypassAPI request example
# Use Cloudbyapss API to request
url = "https://api.scrapingbypass.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 ScrapingbypassAPI request example
# Use Cloudbyapss API to request
url = "https://api.scrapingbypass.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.scrapingbypass.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 ScrapingbypassAPI
// Use Cloudbyapss API to request
const url = "https://api.scrapingbypass.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 ScrapingbypassProxy
// Use Cloudbyapss Proxy to request
const url = "https://opensea.io/category/memberships";
const config = {
     proxy: {
         host: 'proxy.scrapingbypass.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 ScrapingbypassAPI
         // Use Cloudbyapss API to request
         String url = "https://api.scrapingbypass.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 ScrapingbypassProxy
         // 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.scrapingbypass.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




Scrapingbypass access process

1.Register an account

Register a Scrapingbypass API account, click Register

Register a Scrapingbypass proxy account, click Register

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

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 dynamic IP pool. If it is accessible, there is no need to configure an IP proxy;
The V2 version must be configured with a fixed IP or a time-effective IP, such as Scrapingbypass dynamic IP. 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 Scrapingbypass API

Integrate the Scrapingbypass 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 IP proxy traffic:【Dynamic datacenter IP or dynamic residential IP】

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

cloudflare5 seconds verification




Bypass Cloudflare bot verification

Bypassing Cloudflare robot restrictions to achieve efficient and stable data collection

Using the Scrapingbypass 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 IP proxy
  • Custom request header
  • Customized request body
  • Custom query parameters
Get ScrapingbypassAPI

Multi-language API support helps you easily skip Cloudflare verification

ScrapingbypassAPI 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 ScrapingbypassAPI


ScrapingbypassAPI 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, ScrapingbypassAPI 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 ScrapingbypassAPI

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 ScrapingbypassAPI



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

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

Bypass cloudflare verification
Bypass cloudflare verification
Application fields

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

Data collector assistance

The auxiliary collector bypasses Cloudflare verification to crawl data and provides data collector configuration dynamic proxy IP rotation, which is suitable for all data collectors and cloud collectors



Video picture data collection

Bypassing the Cloudflare anti-crawling verification of various video websites/picture websites, ScrapingbypassAPI prevents Cloudflare’s verification code or 5-second shield from appearing and directly accesses the target server


Cross-border e-commerce data collection

Bypassing the Cloudflare anti-crawling verification of various cross-border e-commerce websites, ScrapingbypassAPI prevents Cloudflare’s verification code or 5-second shield from appearing and directly accesses the target server

Travel ticketing data collection

Bypassing the Cloudflare anti-crawling verification of travel websites/ticketing websites, ScrapingbypassAPI prevents Cloudflare’s verification code or 5-second shield from appearing and directly accesses the target server

Coupon data collection

Bypassing the Cloudflare anti-crawling verification of coupon websites/discount coupon websites, ScrapingbypassAPI prevents Cloudflare’s verification code or 5-second shield from appearing and directly accesses the target server

News novel data collection

Bypassing the Cloudflare anti-crawling verification of novel websites/news websites, ScrapingbypassAPI prevents Cloudflare’s verification code or 5-second shield from appearing and directly accesses the target server

Bypass cloudflare verification
ScrapingbypassAPI package price

Bypass the Cloudflare verification of more than 95% of websites, helping you collect data worry-free

The minimum is only $0.00009/point Starting, a successful request consumes 1 point (ScrapingbypassV2 consumes 3 points)

  • Basic

  • $39/MO

  • Interface points: 80000
  • Validity period: 1 month
  • Concurrent threads:20 times/s
  • Standard

  • $59/MO

  • Interface points: 300000
  • Validity period: 1 month
  • Concurrent threads:20 times/s
  • Premium

  • $99/MO

  • Interface points: 1000000
  • Validity period: 1 month
  • Concurrent threads:20 times/s
  • Professional

  • $199/MO

  • Interface points:2200000
  • Validity period: 1 month
  • Concurrent threads:20 times/s
Dynamic data center IP traffic package

Suitable for businesses with slightly lower IP quality (weight) requirements, including crawlers, browsing, login, account maintenance, likes and comments, etc.
(minimum $0.29/GB)

15GB
Dynamic data center IP traffic package

Price: $15

Unit price: $1 /GB

  • Supported protocol: HTTP/Socks5
  • Regional positioning: country/city level positioning IP
  • Package validity period: traffic never expires
  • Dynamic IP bandwidth: unlimited bandwidth
  • Concurrent requests: unlimited concurrent sessions
  • ScrapingbypassAPI extraction: supports API extraction
  • Register to purchase
    40GB
    Dynamic data center IP traffic package

    Price: $35

    Unit price: $0.88 /GB

  • Supported protocol: HTTP/Socks5
  • Regional positioning: country/city level positioning IP
  • Package validity period: traffic never expires
  • Dynamic IP bandwidth: unlimited bandwidth
  • Concurrent requests: unlimited concurrent sessions
  • ScrapingbypassAPI extraction: supports API extraction
  • Register to purchase
    70GB
    Dynamic data center IP traffic package

    Price: $70

    Unit price: $0.7 /GB

  • Supported protocol: HTTP/Socks5
  • Regional positioning: country/city level positioning IP
  • Package validity period: traffic never expires
  • Dynamic IP bandwidth: unlimited bandwidth
  • Concurrent requests: unlimited concurrent sessions
  • ScrapingbypassAPI extraction: supports API extraction
  • Register to purchase
    500GB
    Dynamic data center IP traffic package

    Price: $280

    Unit price: $0.56 /GB

  • Supported protocol: HTTP/Socks5
  • Regional positioning: country/city level positioning IP
  • Package validity period: traffic never expires
  • Dynamic IP bandwidth: unlimited bandwidth
  • Concurrent requests: unlimited concurrent sessions
  • ScrapingbypassAPI extraction: supports API extraction
  • Register to purchase
    1000GB
    Dynamic data center IP traffic package

    Price: $500

    Unit price: $0.5 /GB

  • Supported protocol: HTTP/Socks5
  • Regional positioning: country/city level positioning IP
  • Package validity period: traffic never expires
  • Dynamic IP bandwidth: unlimited bandwidth
  • Concurrent requests: unlimited concurrent sessions
  • ScrapingbypassAPI extraction: supports API extraction
  • Register to purchase
    2000GB
    Dynamic data center IP traffic package

    Price: $850

    Unit price: $0.43 /GB

  • Supported protocol: HTTP/Socks5
  • Regional positioning: country/city level positioning IP
  • Package validity period: traffic never expires
  • Dynamic IP bandwidth: unlimited bandwidth
  • Concurrent requests: unlimited concurrent sessions
  • ScrapingbypassAPI extraction: supports API extraction
  • Register to purchase
    3000GB
    Dynamic data center IP traffic package

    Price: $1070

    Unit price: $0.36 /GB

  • Supported protocol: HTTP/Socks5
  • Regional positioning: country/city level positioning IP
  • Package validity period: traffic never expires
  • Dynamic IP bandwidth: unlimited bandwidth
  • Concurrent requests: unlimited concurrent sessions
  • ScrapingbypassAPI extraction: supports API extraction
  • Register to purchase
    5000GB
    Dynamic data center IP traffic package

    Price: $1425

    Unit price: $0.29 /GB

  • Supported protocol: HTTP/Socks5
  • Regional positioning: country/city level positioning IP
  • Package validity period: traffic never expires
  • Dynamic IP bandwidth: unlimited bandwidth
  • Concurrent requests: unlimited concurrent sessions
  • ScrapingbypassAPI extraction: supports API extraction
  • Register to purchase
    Dynamic Residential IP Traffic Packet

    It is suitable for businesses with high requirements on IP quality, including store maintenance, account registration, questionnaire surveys, advertising, e-commerce evaluation, games and other application scenarios.
    (minimum $0.97/GB)

    8GB
    Dynamic Residential IP Traffic Package

    Price: $18

    Unit price: $2.25 /GB

  • Supported protocol: HTTP/Socks5
  • Regional positioning: country/city level positioning IP
  • Package validity period: traffic never expires
  • Dynamic IP bandwidth: unlimited bandwidth
  • Concurrent requests: unlimited concurrent sessions
  • CloudbypassAPI extraction: supports API extraction
  • Register to purchase
    35GB
    Dynamic Residential IP Traffic Package

    Price: $70

    Unit price: $2.00 /GB

  • Supported protocol: HTTP/Socks5
  • Regional positioning: country/city level positioning IP
  • Package validity period: traffic never expires
  • Dynamic IP bandwidth: unlimited bandwidth
  • Concurrent requests: unlimited concurrent sessions
  • CloudbypassAPI extraction: supports API extraction
  • Register to purchase
    150GB
    Dynamic Residential IP Traffic Package

    Price: $245

    Unit price: $1.63 /GB

  • Supported protocol: HTTP/Socks5
  • Regional positioning: country/city level positioning IP
  • Package validity period: traffic never expires
  • Dynamic IP bandwidth: unlimited bandwidth
  • Concurrent requests: unlimited concurrent sessions
  • CloudbypassAPI extraction: supports API extraction
  • Register to purchase
    400GB
    Dynamic Residential IP Traffic Package

    Price: $570

    Unit price: $1.43 /GB

  • Supported protocol: HTTP/Socks5
  • Regional positioning: country/city level positioning IP
  • Package validity period: traffic never expires
  • Dynamic IP bandwidth: unlimited bandwidth
  • Concurrent requests: unlimited concurrent sessions
  • CloudbypassAPI extraction: supports API extraction
  • Register to purchase
    700GB
    Dynamic Residential IP Traffic Package

    Price: $930

    Unit price: $1.33 /GB

  • Supported protocol: HTTP/Socks5
  • Regional positioning: country/city level positioning IP
  • Package validity period: traffic never expires
  • Dynamic IP bandwidth: unlimited bandwidth
  • Concurrent requests: unlimited concurrent sessions
  • CloudbypassAPI extraction: supports API extraction
  • Register to purchase
    1500GB
    Dynamic Residential IP Traffic Package

    Price: $1850

    Unit price: $1.23 /GB

  • Supported protocol: HTTP/Socks5
  • Regional positioning: country/city level positioning IP
  • Package validity period: traffic never expires
  • Dynamic IP bandwidth: unlimited bandwidth
  • Concurrent requests: unlimited concurrent sessions
  • CloudbypassAPI extraction: supports API extraction
  • Register to purchase
    3000GB
    Dynamic Residential IP Traffic Package

    Price: $3400

    Unit price: $1.13 /GB

  • Supported protocol: HTTP/Socks5
  • Regional positioning: country/city level positioning IP
  • Package validity period: traffic never expires
  • Dynamic IP bandwidth: unlimited bandwidth
  • Concurrent requests: unlimited concurrent sessions
  • CloudbypassAPI extraction: supports API extraction
  • Register to purchase
    5000GB
    Dynamic Residential IP Traffic Package

    Price: $4860

    Unit price: $0.97 /GB

  • Supported protocol: HTTP/Socks5
  • Regional positioning: country/city level positioning IP
  • Package validity period: traffic never expires
  • Dynamic IP bandwidth: unlimited bandwidth
  • Concurrent requests: unlimited concurrent sessions
  • CloudbypassAPI extraction: supports API extraction
  • Register to purchase
    Scrapingbypass Help Center

    Common Issues with Scrapingbypass API: Point rules, V2 version, maximum concurrency. Overseas IPs billed by traffic package, support multiple payment methods. Tutorials cover bypassing Cloudflare, HTTP API, global dynamic IP proxy, fingerprint browser, and multi-platform configuration.

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

    Scrapingbypass 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 IP purchase. Max concurrent requests: 20/s. 403 or Access Denied may require proxy IP configuration. Not compatible with selenium or Puppeteer; can be used with fingerprint browsers and collectors.


    View More
    Common Issues with Scrapingbypass Global IP Proxy
    Common Issues with Scrapingbypass Global IP Proxy

    Scrapingbypass global IP 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 IPs, supports http and Socks5 proxy protocols. Free trial available after registration. Chinese users need to use it in overseas environments as direct connection to mainland China IP is not supported.


    View More
    Tutorial for Using Scrapingbypass API/IP Proxy
    Tutorial for Using Scrapingbypass API/IP Proxy

    Bypass Cloudflare effortlessly with Scrapingbypass API for unhindered web data collection. It offers HTTP API and global dynamic IP proxy services, supporting customizable browser fingerprints like Referer and UA for enhanced control. Scrapingbypass IP service settings cover FAQs, IP extraction tutorials, fingerprint browsers, computer browsers, and mobile platforms. Detailed guides include configurations for various browsers and platforms.

    View More