# Getting Started
Welcome to Cenvexa! Get up and running in minutes.
Installation
bash
npm install @cenvexa/sdkAuthentication
All API requests require an API key. Get yours from the [dashboard](https://dashboard.cenvexa.com).
javascript
const client = new Cenvexa({ apiKey: process.env.CENVEXA_API_KEY }) ```
Your First Email
javascript
await client.send({
to: 'user@example.com',
from: 'hello@yourapp.com',
subject: 'Welcome!',
html: '<h1>Welcome to Cenvexa</h1>'
})
```