Skip to Content
API 參考Google SERP

Google SERP

Google 搜尋、新聞、趨勢、財經與購物資料結構化 API。

  • 搜尋:網頁搜尋結果,支援分頁
  • 新聞:Google 新聞文章
  • 趨勢:搜尋熱度隨時間變化
  • 財經:股票行情資料
  • 購物:商品列表,支援價格篩選

搜尋

GET /google/search — 2 點數

搜尋 Google 並取得結構化結果。

參數類型必填預設說明
qstring搜尋關鍵字
numinteger10結果數量
languagestringen語言代碼
countrystringus國家代碼
pageinteger1頁碼
curl -H "x-api-key: sk_byc_xxx" \ "https://api.bycrawl.com/google/search?q=openai&num=5"

回應

{ "query": "openai", "results": [ { "title": "OpenAI", "url": "https://openai.com/", "description": "OpenAI is an AI research and deployment company..." } ], "totalResults": 10 }

新聞

GET /google/news — 2 點數

取得 Google 新聞搜尋結果。

參數類型必填預設說明
qstring搜尋關鍵字
languagestringen語言代碼
countrystringus國家代碼
curl -H "x-api-key: sk_byc_xxx" \ "https://api.bycrawl.com/google/news?q=artificial+intelligence"

回應

{ "query": "artificial intelligence", "articles": [ { "title": "AI Breakthrough in 2026...", "url": "https://example.com/article", "source": "TechCrunch", "publishedAt": "2026-03-24T10:00:00Z" } ] }

趨勢

GET /google/trends — 2 點數

取得 Google Trends 搜尋趨勢資料。

參數類型必填預設說明
qstring搜尋關鍵字
timeframestringtoday 12-m時間範圍(如 today 12-mtoday 3-m
geostring地理區域(如 USGB
categoryinteger0分類 ID
curl -H "x-api-key: sk_byc_xxx" \ "https://api.bycrawl.com/google/trends?q=chatgpt&timeframe=today+3-m&geo=US"

回應

{ "query": "chatgpt", "timeframe": "today 3-m", "geo": "US", "interestOverTime": [ { "date": "2026-01-01", "value": 75 }, { "date": "2026-02-01", "value": 82 } ] }

財經

GET /google/finance — 2 點數

取得股票行情資料。

參數類型必填預設說明
tickerstring股票代碼(如 AAPLGOOGL
curl -H "x-api-key: sk_byc_xxx" \ "https://api.bycrawl.com/google/finance?ticker=AAPL"

回應

{ "ticker": "AAPL", "name": "Apple Inc", "price": 178.52, "change": 2.34, "changePercent": 1.33, "currency": "USD", "exchange": "NASDAQ" }

購物

GET /google/shopping — 2 點數

搜尋 Google 購物商品。

參數類型必填預設說明
qstring搜尋關鍵字
numinteger20結果數量
min_pricenumber最低價格篩選
max_pricenumber最高價格篩選
countrystringus國家代碼
curl -H "x-api-key: sk_byc_xxx" \ "https://api.bycrawl.com/google/shopping?q=mechanical+keyboard&num=10&country=us"

回應

{ "query": "mechanical keyboard", "products": [ { "title": "Keychron K2 Wireless Mechanical Keyboard", "price": 89.99, "currency": "USD", "source": "Amazon", "url": "https://...", "imageUrl": "https://..." } ], "totalResults": 20 }
Last updated on