Quick Start Guide
Get up and running with EnigmaDesk APIs in minutes
Installation
Install the EnigmaDesk SDK using npm:
npm install @enigmadesk/sdk
Authentication
Initialize the SDK with your API key:
import EnigmaDesk from '@enigmadesk/sdk';
const client = new EnigmaDesk({
apiKey: 'your_api_key_here'
});
Making Your First Request
Here's a simple example to get started:
const response = await client.projects.list();
console.log(response.data);
Next Steps
📚 API Reference
Explore all available endpoints and methods
🔐 Authentication
Learn about API keys and OAuth
💡 Examples
Browse code examples and tutorials