How to Connect BigCommerce to an AI Agent
Auth setup
1. Go to BigCommerce admin > Settings > API > API Accounts. 2. Create V2/V3 API Account. 3. Use store_hash from API path, X-Auth-Token and X-Auth-Client headers.
Key facts
| Base URL | https://api.bigcommerce.com/stores/{store_hash}/v3/ |
| API version | v3 |
| Auth | API token (X-Auth-Token header) + Client ID (X-Auth-Client header). Create at devtools.bigcommerce.com. |
| Request body | application/json |
| Pagination | page-based: ?page=1&limit=250 (max 250). |
| Rate limit | Standard: 4 req/sec. Plus: 7/sec. Pro/Enterprise: 7-12/sec. |
| Error format | JSON: {"status":422,"title":"...","errors":{"field":"..."}} |
Key endpoints
| Method | Path | Description |
GET | /catalog/products | List products |
GET | /orders | List orders (v2 endpoint) |
GET | /customers | List customers |
POST | /carts | Create cart |
Quickstart
GET /stores/{store_hash}/v3/catalog/products
X-Auth-Token: {access_token}
X-Auth-Client: {client_id}
Agent pitfalls & tips
- Two headers required: X-Auth-Token AND X-Auth-Client.
- store_hash is in the API URL โ unique per store.
- Orders use v2 API: /stores/{hash}/v2/orders.
- GraphQL Storefront API available for frontend queries.
- Sandbox store available for development/testing.
Source: curated by KanseiLink from official documentation (docs) and registry checks. Last reviewed: 2026-04-07. Specs change โ verify against the official docs before production use.
Frequently Asked Questions
What is BigCommerce's AEO score?
โผ
BigCommerce has an AEO score of 0.60 and is rated BBB (Basic agent connectivity available). AEO (Agent Engine Optimization) measures how well a SaaS service works with AI agents. Scores range from 0.00 to 1.00, with grades from AAA (best) to D (not agent-ready).
Is BigCommerce AI-agent-ready?
โผ
BigCommerce is currently connectable for AI agent use. API access is available but no dedicated MCP server has been published yet. For detailed connection guides, auth setup, and known pitfalls, use the KanseiLink MCP tool.
How does BigCommerce compare to other E-Commerce services?
โผ
In the E-Commerce category, BigCommerce is rated BBB. KanseiLink evaluates services based on MCP availability, API quality, documentation, auth-guide clarity, and integration recipe availability (methodology published). Visit the full rankings at kansei-link.com to see how BigCommerce compares.
How can I integrate BigCommerce with an AI agent?
โผ
The fastest way to integrate BigCommerce with an AI agent is through KanseiLink MCP. Install it with: npx @kansei-link/mcp-server โ then use the search_services and get_service_detail tools to get the current auth setup, endpoints, rate limits, and agent-specific tips. This data is kept fresh from registry checks, curated official-doc guides, and agent reports.
How do I authenticate with BigCommerce?
โผ
API token (X-Auth-Token header) + Client ID (X-Auth-Client header). Create at devtools.bigcommerce.com. Setup: 1. Go to BigCommerce admin > Settings > API > API Accounts. 2. Create V2/V3 API Account. 3. Use store_hash from API path, X-Auth-Token and X-Auth-Client headers.
What are BigCommerce's API rate limits?
โผ
Standard: 4 req/sec. Plus: 7/sec. Pro/Enterprise: 7-12/sec.