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

# Get Integration Guide

> Get a framework-specific API integration example

Get a short code example and implementation tip for a framework and use case.

## Request

<ParamField body="framework" type="string">
  Framework key. Defaults to `nextjs`.
</ParamField>

<ParamField body="use_case" type="string">
  Use case key: `transactional`, `subscribe_form`, `event_tracking`, or
  `ecommerce`. Defaults to `transactional`.
</ParamField>

```bash theme={null}
curl -X POST "https://api.sequenzy.com/api/v1/integration-guide" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"framework": "nextjs", "use_case": "transactional"}'
```

## Responses

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "framework": "nextjs",
    "use_case": "transactional",
    "code": "await fetch('https://api.sequenzy.com/api/v1/transactional/send', ...)",
    "tip": "For transactional emails, make sure to set up a verified sending domain in the dashboard for best deliverability."
  }
  ```

  ```json 401 theme={null}
  {
    "success": false,
    "error": "Unauthorized"
  }
  ```
</ResponseExample>
