Skip to main content

Documentation Index

Fetch the complete documentation index at: https://spreecommerce.org/docs/llms.txt

Use this file to discover all available pages before exploring further.

The Admin API SDK is coming soon. The client.admin namespace is ready and will provide full access to administrative endpoints for managing products, orders, customers, and store settings.

Preview

import { createClient } from '@spree/sdk';

const client = createClient({
  baseUrl: 'https://api.mystore.com',
  secretKey: 'sk_xxx', // Admin API requires a secret key
});

// Admin endpoints will be available under client.admin.*
// client.admin.products.list()
// client.admin.orders.list()
// client.admin.customers.list()