Build on Next Commerce
APIs, SDKs, and webhooks for building AI-powered commerce experiences — from headless storefronts to automated fulfillment pipelines.
Explore the Platform
Everything you need to integrate, extend, and build on Next Commerce.
Campaigns
Build high-converting funnels with custom checkout flows, upsells, and A/B testing.
- Custom checkout flows & upsells
- A/B testing & conversion optimization
- Campaign Cart SDK integration
Admin API
Manage orders, products, customers, and store resources with a comprehensive REST API.
Storefront
Customize themes with templates, build headless storefronts with the GraphQL API.
Apps
Extend platform functionality with OAuth apps, webhooks, and event tracking.
Webhooks
Subscribe to real-time store events for orders, payments, fulfillment, and more.
Start integrating in minutes
Authenticate with an API key and start making requests. Full REST and GraphQL support with comprehensive reference docs.
# Fetch orders from the Admin API
import requests
response = requests.get(
'https://{store}.29next.store/api/admin/orders/',
headers={
'Authorization': 'Bearer {api_key}',
'X-29next-API-Version': '2024-04-01',
'Content-Type': 'application/json',
}
)
orders = response.json()['results']
# Filter and process pending orders
pending = [o for o in orders if o['status'] == 'pending']Resources
Guides and references to help you build faster.