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 APIimport requestsresponse = 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 orderspending = [o for o in orders if o['status'] == 'pending']