Ebay
ebay 來源旨在檢索 Ebay 搜尋結果頁面。我們可以返回您所需的任何 Ebay 頁面的 HTML。
請求示例
curl -X GET "https://serpapi.abcproxy.com/search" \
-d "engine=ebay" \
-d "_nkw=coffee" \
-d "no_cache=false" \
-d "api_key=YOUR_API_KEY"import requests
params = {
"engine": "ebay",
"_nkw": "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: "ebay",
_nkw: "coffee",
no_cache: "false",
api_key: "YOUR_API_KEY"
};
axios.get("https://serpapi.abcproxy.com/search", { params })
.then(response => console.log(response.data));