mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-07-12 19:53:11 +00:00
Updated Partnerships (markdown)
parent
532617394f
commit
01dd4d2fa4
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue
Block a user