From 01dd4d2fa4467b6eb34d02ba1e75b74151f01626 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Thu, 10 Jul 2025 19:48:27 +0900 Subject: [PATCH] Updated Partnerships (markdown) --- Partnerships.md | 55 +++++++++++++++++++++++++------------------------ 1 file changed, 28 insertions(+), 27 deletions(-) diff --git a/Partnerships.md b/Partnerships.md index 80fe687..8bf6ec1 100644 --- a/Partnerships.md +++ b/Partnerships.md @@ -3,6 +3,34 @@ Partnerships for the WelsonJS project primarily consist of commercial services o If commercial services or products arise through these partnerships, the proceeds will be used to support this project. + +### [SerpApi](https://serpapi.com/?utm_source=welsonjs) +[SerpApi (serpapi.com)](https://serpapi.com/?utm_source=welsonjs) can retrieve data from public search engines like Google, Bing, Baidu, and websites like YouTube, Amazon, and Naver. + +The example code for integration: + +```js +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)](https://serpapi.com/?utm_source=welsonjs) now, you can receive credits of **100 free calls per month**. + +For more details, please refer to the [SERP (catswords-oss.rdbl.io)](https://catswords-oss.rdbl.io/5719744820/1706431912) page. + ### [ScrapeOps Proxy Aggregator](https://scrapeops.io/?fpr=namhyeon75) In the use cases of the WelsonJS project, the utilization of commercial proxy APIs is very common. Among them, [ScrapeOps (scrapeops.io)](https://scrapeops.io/?fpr=namhyeon75) can be used in this project without complex integration tasks. @@ -33,30 +61,3 @@ console.log("responseBody:", response.responseBody); If you [sign up (scrapeops.io)](https://scrapeops.io/?fpr=namhyeon75) now, you can receive credits of **1,000 free calls + 0.5GB free per month**. Additionally, a **10% discount coupon** is available `gnh10`. - -### [SearchApi](https://www.searchapi.io/?via=namhyeon) -[SearchApi (searchapi.io)](https://www.searchapi.io/?via=namhyeon) can retrieve data from public search engines like Google, Bing, Baidu, and websites like YouTube, Amazon. - -The example code for integration: - -```js -var HTTP = require("lib/http"); - -var response = HTTP.create() - .setVariables({ - "api_key": "YOUR_API_KEY" - }) - .setProxy({ - "enabled": true, - "provider": "searchapi", - "type": "serp" - }) - .open("GET", "https://www.google.com/search?q=test") - .send(); - -console.log("responseBody:", response.responseBody); -``` - -If you [sign up (searchapi.io)](https://www.searchapi.io/?via=namhyeon) now, you can receive credits of **100 free calls per month**. - -For more detailed information, please refer to the [SERP (catswords-oss.rdbl.io)](https://catswords-oss.rdbl.io/5719744820/1706431912) page.