Storefront catalog monitoring
BigCommerceエンドポイントを使えば、「Storefront catalog monitoring」をドキュメント化された入力とJSONレスポンスによる再現可能なAPIリクエストに変えられます。
Turn any public BigCommerce Stencil storefront into structured JSON — full-catalog search, paginated category product grids, and per-product detail with pricing, availability, brand, description, and images, from just the storefront URL.
Search a BigCommerce Stencil storefront, browse category product grids, and get full public product detail as structured JSON.
エンドポイントファミリー
3
ドキュメント化されたパラメータ
9
サンプル数
3
ライブカタログスナップショット
稼働エンドポイント
3
メソッド
GET
必須パラメータ
7
スキーマ参照
3
{
"platform": "BigCommerce",
"endpoint": "bigcommerce-search",
"method": "GET",
"path": "/bigcommerce/search",
"auth": "apiKey"
}ユースケース
Search a BigCommerce Stencil storefront, browse category product grids, and get full public product detail as structured JSON.
BigCommerceエンドポイントを使えば、「Storefront catalog monitoring」をドキュメント化された入力とJSONレスポンスによる再現可能なAPIリクエストに変えられます。
BigCommerceエンドポイントを使えば、「Category and search research」をドキュメント化された入力とJSONレスポンスによる再現可能なAPIリクエストに変えられます。
BigCommerceエンドポイントを使えば、「Price and availability tracking」をドキュメント化された入力とJSONレスポンスによる再現可能なAPIリクエストに変えられます。
マネージド実行
以下の数値はすべて、稼働中のBigCommerceエンドポイントカタログから取得しています(エンドポイント3件、ドキュメント化されたリクエストパラメータ9個、公開レスポンススキーマ3件)。DocsとPlaygroundが参照しているカタログと同じものです。
BigCommerceのエンドポイントは3件、3つのリクエストファミリーに分類されています(Category、Product、Search)。
これらのBigCommerceエンドポイントには9個のリクエストパラメータがドキュメント化されており、うち7個が必須です。統合コードを書く前に入力仕様をすべて確認できます。
3件のBigCommerceエンドポイントのうち3件が実際のサンプルレスポンスを、3件がドキュメント化されたレスポンススキーマを備えています。最初のリクエストの前に実データの形に合わせて実装できます。
BigCommerceのエンドポイントは成功時のスキーマに加えてエラーレスポンス(400、404、429、503)もドキュメント化しています。ブロック、レート制限、レコード欠損は空データではなく型付きのエラーとして返ります。
BigCommerceのエンドポイントは3個のホスト型MCPツールとして提供されており、エージェントは同じパラメータと同じJSON契約のまま、追加の実装なしに同じルートを呼び出せます。
カバレッジマップ
これらのカードは稼働中のエンドポイントカタログから生成されるため、このページはDocsとPlaygroundが使うAPIサーフェスをそのまま反映します。
/bigcommerce/category
/bigcommerce/product
/bigcommerce/search
エンドポイントカタログ
/bigcommerce/searchReturns one normalized product-search page from a public BigCommerce storefront. url must be the public storefront origin; an optional caller path or query is ignored. q is required search text. page is 1-indexed and defaults to 1.
MCPツール bigcommerce_search
/bigcommerce/categoryReturns one normalized product-listing page from a public BigCommerce storefront category page. url must be the full public category-page URL. page is 1-indexed and defaults to 1.
MCPツール bigcommerce_category
/bigcommerce/productReturns normalized product detail from a public BigCommerce storefront product page. url must be the full public product-page URL for a BigCommerce Stencil storefront.
MCPツール bigcommerce_product
関連API
Marketplaces & Retail
Collect marketplace product signals from Amazon without building brittle storefront scrapers.
Marketplaces & Retail
Build resale, pricing, and marketplace workflows from structured eBay data.
Marketplaces & Retail
Turn public Shop.app product and merchant pages into structured JSON for e-commerce product intelligence, price research, shop monitoring, and marketplace discovery workflows.
BigCommerceのスクレイピング方法
Crawlora's BigCommerce endpoints return normalized public storefront data as JSON with one API key — no account or storefront credentials required, just the storefront's own public URL.
Every BigCommerce endpoint is URL-driven rather than store-specific: url is required on all three, so the same API key works against any public Stencil storefront without per-store configuration. That is what makes this platform different from the single-retailer APIs elsewhere in the catalog.
/bigcommerce/search takes the storefront url plus a required q query and an optional page, returning normalized product-search cards.
/bigcommerce/category takes a full category-page URL copied from the storefront plus an optional page, returning the same normalized product cards with pagination.
Pass a full public product-page URL to /bigcommerce/product for normalized identity, pricing, availability, brand, description and images.
Coverage depends on the storefront exposing public Stencil HTML. A store that is password-protected, headless, or on a non-Stencil theme returns an upstream error rather than partial data — worth probing one product URL before pointing a pipeline at a new store.
FAQ
Call /bigcommerce/search or /bigcommerce/category for a paginated product grid, or /bigcommerce/product with a product URL for full detail — all return structured JSON from any public BigCommerce Stencil storefront, no account needed.
It works on public BigCommerce Stencil storefronts. Storefronts without public Stencil HTML, or that are password-protected, return an upstream error.
Yes — /bigcommerce/product returns current pricing and availability; re-run it on a schedule to track changes over time.
No. All three endpoints take the storefront URL as a required parameter, so one API key covers every public Stencil storefront you point it at — there is no per-store setup, key or allowlist. Discover product URLs with the search or category endpoint, then resolve them with the product endpoint.
Any storefront that does not serve public Stencil HTML — password-protected stores, headless builds that render through a separate frontend, and non-Stencil themes. Those return an upstream error rather than partial or guessed data, so probe a single product URL before committing a pipeline to a new store.