Yelp
使用 Web Scraper API,您可以擷取並解析各種類型的 Yelp 頁面;以下概述所有支持的爬蟲工具及其各自的 來源 值。
來源
功能說明
專用解析器
yelp
從 Yelp 搜尋頁面擷取結果
是.
請求示例
curl -X GET "https://serpapi.abcproxy.com/search" \
-d "engine=yelp" \
-d "q=coffee" \
-d "no_cache=false" \
-d "api_key=YOUR_API_KEY"import requests
params = {
"engine": "yelp",
"q": "coffee",
"no_cache": "false",
"api_key": "YOUR_API_KEY"
}
response = requests.get("https://serpapi.abcproxy.com/search", params=params)
print(response.json())const axios = require('axios');
const params = {
engine: "yelp",
q: "coffee",
no_cache: "false",
api_key: "YOUR_API_KEY"
};
axios.get("https://serpapi.abcproxy.com/search", { params })
.then(response => console.log(response.data));