22 Partnerships
Namhyeon, Go edited this page 2025-07-10 19:48:27 +09:00

Partnerships

Partnerships for the WelsonJS project primarily consist of commercial services or products that have existing integration cases with this project.

If commercial services or products arise through these partnerships, the proceeds will be used to support this project.

SerpApi

SerpApi (serpapi.com) can retrieve data from public search engines like Google, Bing, Baidu, and websites like YouTube, Amazon, and Naver.

The example code for integration:

var HTTP = require("lib/http");

var response = HTTP.create()
    .setVariables({
        "api_key": "YOUR_API_KEY"
    })
    .setProxy({
        "enabled": true,
        "provider": "serpapi",
        "type": "serp"
    })
    .open("GET", "https://www.google.com/search?q=test")
    .send();

console.log("responseBody:", response.responseBody);

If you sign up (serpapi.com) now, you can receive credits of 100 free calls per month.

For more details, please refer to the SERP (catswords-oss.rdbl.io) page.

ScrapeOps Proxy Aggregator

In the use cases of the WelsonJS project, the utilization of commercial proxy APIs is very common. Among them, ScrapeOps (scrapeops.io) can be used in this project without complex integration tasks.

The example code for integration:

var HTTP = require("lib/http");

var response = HTTP.create()
    .setVariables({
        "api_key": "YOUR_API_KEY",
        "render_js": "false",
        "residential": "false",
        "country": "us",
        "keep_headers": "false"
    })
    .setProxy({
        "enabled": true,
        "provider": "scrapeops",
        "type": "stateless"
    })
    .open("GET", "https://example.org")
    .send();

console.log("responseBody:", response.responseBody);

If you sign up (scrapeops.io) now, you can receive credits of 1,000 free calls + 0.5GB free per month.

Additionally, a 10% discount coupon is available gnh10.