Google SERP
Google 搜尋、新聞、趨勢、財經與購物資料結構化 API。
- 搜尋:網頁搜尋結果,支援分頁
- 新聞:Google 新聞文章
- 趨勢:趨勢搜尋結果與相關查詢
- 財經:股票代碼的財經 SERP 結果
- 購物:商品列表,含評分與價格
搜尋
GET /google/search — 2 點數
搜尋 Google 並取得結構化結果。
| 參數 | 類型 | 必填 | 預設 | 說明 |
|---|---|---|---|---|
q | string | 是 | — | 搜尋關鍵字 |
num | integer | 否 | 10 | 結果數量 |
language | string | 否 | en | 語言代碼 |
country | string | 否 | us | 國家代碼 |
page | integer | 否 | 1 | 頁碼 |
cURL
curl -H "x-api-key: sk_oms_xxx" \
"https://api.omniscrape.dev/google/search?q=openai&num=5"回應
{
"query": "openai",
"organic": [
{
"title": "OpenAI",
"link": "https://openai.com/",
"snippet": "OpenAI is an AI research and deployment company...",
"position": 1,
"sitelinks": []
}
],
"answerBox": null,
"knowledgeGraph": null,
"peopleAlsoAsk": [],
"relatedSearches": []
}新聞
GET /google/news — 2 點數
取得 Google 新聞搜尋結果。
| 參數 | 類型 | 必填 | 預設 | 說明 |
|---|---|---|---|---|
q | string | 是 | — | 搜尋關鍵字 |
language | string | 否 | en | 語言代碼 |
country | string | 否 | us | 國家代碼 |
cURL
curl -H "x-api-key: sk_oms_xxx" \
"https://api.omniscrape.dev/google/news?q=artificial+intelligence"回應
{
"query": "artificial intelligence",
"news": [
{
"title": "AI Breakthrough in 2026...",
"link": "https://example.com/article",
"snippet": "A major breakthrough in artificial intelligence...",
"source": "TechCrunch",
"date": "2 hours ago",
"imageUrl": "https://..."
}
]
}趨勢
GET /google/trends — 2 點數
取得 Google Trends 搜尋趨勢資料。
| 參數 | 類型 | 必填 | 預設 | 說明 |
|---|---|---|---|---|
q | string | 是 | — | 搜尋關鍵字 |
timeframe | string | 否 | today 12-m | 時間範圍(如 today 12-m、today 3-m) |
geo | string | 否 | — | 地理區域(如 US、GB) |
category | integer | 否 | 0 | 分類 ID |
cURL
curl -H "x-api-key: sk_oms_xxx" \
"https://api.omniscrape.dev/google/trends?q=chatgpt&timeframe=today+3-m&geo=US"回應
{
"query": "chatgpt",
"timeframe": "today 3-m",
"geo": "US",
"category": 0,
"knowledgeGraph": null,
"organic": [
{
"title": "ChatGPT",
"link": "https://chatgpt.com/",
"snippet": "ChatGPT helps you get answers...",
"position": 1
}
],
"relatedSearches": [
{ "query": "chatgpt login" },
{ "query": "chatgpt alternative" }
]
}財經
GET /google/finance — 2 點數
取得 Google Finance SERP 搜尋結果。
| 參數 | 類型 | 必填 | 預設 | 說明 |
|---|---|---|---|---|
ticker | string | 是 | — | 股票代碼(如 AAPL、GOOGL) |
cURL
curl -H "x-api-key: sk_oms_xxx" \
"https://api.omniscrape.dev/google/finance?ticker=AAPL"回應
{
"ticker": "AAPL",
"answerBox": {
"title": "Apple Inc (AAPL) Stock Price",
"answer": "$178.52",
"source": "Google Finance"
},
"knowledgeGraph": null,
"organic": [
{
"title": "Apple Inc (AAPL) Stock Price, News, Quote & History",
"link": "https://finance.yahoo.com/quote/AAPL/",
"snippet": "Find the latest Apple Inc (AAPL) stock quote...",
"position": 1
}
]
}購物
GET /google/shopping — 2 點數
搜尋 Google 購物商品。
| 參數 | 類型 | 必填 | 預設 | 說明 |
|---|---|---|---|---|
q | string | 是 | — | 搜尋關鍵字 |
num | integer | 否 | 20 | 結果數量 |
min_price | number | 否 | — | 最低價格篩選 |
max_price | number | 否 | — | 最高價格篩選 |
country | string | 否 | us | 國家代碼 |
cURL
curl -H "x-api-key: sk_oms_xxx" \
"https://api.omniscrape.dev/google/shopping?q=mechanical+keyboard&num=10&country=us"回應
{
"query": "mechanical keyboard",
"shopping": [
{
"title": "Keychron K2 Wireless Mechanical Keyboard",
"price": "$89.99",
"source": "Amazon",
"link": "https://...",
"imageUrl": "https://...",
"rating": 4.5,
"ratingCount": 1234,
"productId": "abc123",
"position": 1
}
]
}Last updated on