> ## Documentation Index
> Fetch the complete documentation index at: https://docs.notvis.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SDKs

> Official SDKs and libraries for Notvis Connect.

## Official SDKs

Official SDKs are coming soon for the following languages and platforms:

<CardGroup cols={2}>
  <Card title="Node.js" icon="js">
    Server-side SDK for Node.js applications.
    **Coming soon**
  </Card>

  <Card title="Python" icon="python">
    Server-side SDK for Python applications.
    **Coming soon**
  </Card>

  <Card title="Go" icon="golang">
    Server-side SDK for Go applications.
    **Coming soon**
  </Card>

  <Card title="Web Push SDK" icon="browser">
    Client-side SDK for web push notifications.
    **Coming soon**
  </Card>
</CardGroup>

## Using the REST API Directly

In the meantime, you can integrate directly with the [REST API](/api-reference/overview). All endpoints accept JSON and return JSON — no SDK required.

```bash theme={null}
curl -X POST https://api.notvis.com/v1/emails/send \
  -H "Authorization: Bearer nc_live_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "from": { "email": "hello@yourdomain.com" },
    "to": [{ "email": "user@example.com" }],
    "subject": "Hello!",
    "body_html": "<p>Hello from Notvis!</p>"
  }'
```

## Community Libraries

Building an SDK or wrapper for Notvis Connect? [Let us know](mailto:support@notvis.com) and we'll list it here.
