Comprehensive API references, integration guides, and technical deep dives for Store products.
Secure RESTful endpoints for integrating Store products with external systems. Requires OAuth 2.0 authentication.
{
"client_id": "YOUR_CLIENT_ID",
"client_secret": "YOUR_SECRET",
"grant_type": "client_credentials"
}
{{
"access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...6QZ",
"token_type": "Bearer",
"expires_in": 3600
}}
Missing or invalid authentication credentials. Check that the client ID and secret are correctly set.
Insufficient permissions. Contact support to update your API scope.
Connect Store's analytics platform using our Python SDK. The following example demonstrates how to fetch product metrics.
// Example usage
import store_api
config = store_api.Configuration()
config.api_key = "YOUR_API_TOKEN"
client = store_api.MetricsClient(config)
response = client.get_performance_data(product_id="X-48291")
for metric in response.metrics:
print(f"{metric.label}: {metric.value}")
Receive real-time updates from our API using webhooks. Configure your endpoint to receive event notifications.
{{
"event": "product.inventory.changed",
"product_id": "X-48291",
"quantity": 12345
}}
Malformed request body or missing required parameters
Rate limit exceeded. Retry after 60 seconds.
Service temporarily unavailable. Please retry or contact support.
Create a developer account through our contact page or use your existing business credentials to apply.
We use industry-standard OAuth 2.0 client credentials flow. Token lifespan: 60 minutes. Rate limited to 1000rph.
Yes, webhooks for inventory alerts and purchase notifications are available. Configure endpoints through your developer portal.