Google SERP スクレーパー API
APIエンドポイント仕様
- エンドポイント パス: /api/1/googleSERPScraper
- データの種類: JSON & 20/分
- 情報元: Google COM
- リクエスト制限: 500リクエスト/月
- スクリプトと統合: cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript と統合するコード
Google SERP スクレーパー API エンドポイントの基本情報
APIエンドポイントパス
必須
Google 検索結果情報スクレイパー API
api/1/googleSERP
Call Method
Required
GET
返されるデータの種類
JSON
Google SERPコンテンツに構造化されたJSONデータを出力する
利用可能な API 引数とパラメータ
token
必須
BUYFROMLO API トークンを購入します. 有料サブスクリプション API が利用可能です: /api/1/googleSERP /app/1/googleserp のオンサイト APP にもアクセス可能
keyword
必須
キーワードを入力します. 25 以上の言語をサポートしています
totalPage
オプション
SERP情報の選択されたページネーション. デフォルト値は 1 ページ目, つまり 1 です.
language
オプション
ターゲット ISO 言語コードを入力します. デフォルトはenです
Google 検索結果情報スクレイパー API
api/1/googleSERP
コードの統合と対応
Python コードサンプル
import requests
apiendpoint = "https://api.buyfromlo.com/api/1/googleSERP?"
## Required Arguments & Parameters ##
token = "your buyfromlo token"
keyword = "a company name"
## optional arguments and parameters ##
totalPage="total amount of serp results, max. 5 pages"
data="keyword=" + keyword + "&totalPage=" + totalPage
headers={"Authorization": "Bearer " + token}
## Call the api ##
response = requests.get(apiendpoint + data, headers=headers)
print(response.status_code)
print(response.json())
JSON 応答サンプル
{
"Keyword": " " (string),
"SERP Title": " " (string),
"SERP Link": " " (string),
"SERP Snippet": " " (string),
"serp_machine_learning_model": " " (string),
}