Skip to main content
POST
/
api
/
v1
/
integration-guide
Get Integration Guide
curl --request POST \
  --url https://api.sequenzy.com/api/v1/integration-guide \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "framework": "<string>",
  "use_case": "<string>"
}
'
{
  "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."
}

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 a short code example and implementation tip for a framework and use case.

Request

framework
string
Framework key. Defaults to nextjs.
use_case
string
Use case key. Defaults to transactional.
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

{
  "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."
}