> ## 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.

# Admin API

> Manage your store programmatically with the Spree Admin SDK

<Info>
  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.
</Info>

## Preview

```typescript theme={"theme":"night-owl"}
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()
```
