Shopify 製品スクレーパー API
APIエンドポイント仕様
- エンドポイント パス: /api/1/shopifyTracker
- データの種類: JSON & 20/分
- 情報元: ショッピファイ
- リクエスト制限: 500リクエスト/月
- スクリプトと統合: cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript と統合するコード
Shopify 製品スクレーパー API エンドポイントの基本情報
APIエンドポイントパス
必須
Shopify ストア製品スクレーパー API
api/1/shopifyTracker
Call Method
Required
GET
返されるデータの種類
JSON
Shopify Store SERP製品に構造化されたJSONデータを出力する
利用可能な API 引数とパラメータ
token
必須
BUYFROMLO API トークンを購入します. 無料および有料のサブスクリプション API は両方とも利用できます: /api/1/shopifyTracker< /a>, /app/1/shopify のオンサイト APP にもアクセス可能
tld
必須
www, us, hk などのトップレベル ドメインを入力します.
siteURL
必須
abc.com, abc.cn などのルート ドメインを入力します.
Shopify ストア製品スクレーパー API
api/1/shopifyTracker
コードの統合と対応
Python コードサンプル
import requests
## Required components ##
token = "your buyfromlo token"
apiendpoint = "https://api.buyfromlo.com/api/1/shopifyTracker?"
tld = "www"
siteURL = "your target domain"
data="tld=" + tld + "&siteURL=" + siteURL
headers={"Authorization": token}
## Call the api ##
response = requests.get(apiendpoint + data, headers=headers)
print(response.status_code)
print(response.json())
JSON 応答サンプル
{
'Product Title': ' ' (string),
'Product ID': ' ' (string),
'Product Created at': ' ' (string),
'Product Published at': ' ' (string),
'Product Updated at': ' ' (string),
'Vendor': ' ' (string),
'URL': ' ' (string),
'Product Type': ' ' (string),
'Variant ID': ' ' (string),
'Product ID of Variant': ' ' (string),
'Variant title': ' ' (string),
'Variant SKU': ' ' (string),
'Variant Featured Image': ' ' (string),
'Variant Availability': ' ' (string),
'Variant Price': ' ' (float),
'Variant ComparePrice': ' ' (float),
'Variant Taxable': ' ' (string),
'Variant Shipping': ' ' (integer),
'Variant Created at': ' ' (string),
'Variant Updated at': ' ' (string),
'Variant Image1': ' ' (string)
}