175+ REST Endpoints
22 Webhook Events
GraphQL Storefront API

Build on Next Commerce

APIs, SDKs, and webhooks for building AI-powered commerce experiences — from headless storefronts to automated fulfillment pipelines.

CampaignsStorefrontAdmin APIFulfillmentPaymentsAttribution
New

Build with AI agents

Install Next Commerce AI Skills so Claude Code, Cursor, Codex, or Copilot know the platform — APIs, CLI workflows, and architecture patterns — and can work autonomously on your store.

npx skills add NextCommerceCo/skillsView skills
Quick Start

Start integrating in minutes

Authenticate with an API key and start making requests. Full REST and GraphQL support with comprehensive reference docs.

orders.py
# 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']