Installation
Install our SDK using your preferred package manager:Configuration
Initialize the client with your API key:Your first request
Next steps
Guides
Learn core concepts.
API Reference
Explore all endpoints.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
OLD VERSION: https://cheesecakecorp.org/old/docs
Get started with Cheesecake Corp in minutes.
npm install @cheesecakecorp/sdk
yarn add @cheesecakecorp/sdk
pnpm add @cheesecakecorp/sdk
import { CheesecakeClient } from '@cheesecakecorp/sdk';
const client = new CheesecakeClient({
apiKey: process.env.CHEESECAKE_API_KEY,
});
const order = await client.orders.create({
flavor: 'new-york',
quantity: 1,
});
console.log(order);
Related topics
WelcomeWas this page helpful?