Create your API key
Generate a key from your dashboard and keep it in a safe place.
Go to API keysFollow the four steps below to create your API key, top up credits, run your first call, and automate workflows with n8n.
Generate a key from your dashboard and keep it in a safe place.
Go to API keysView our full document and use what you need.
Go to DocsLoad credits so your requests can start routing immediately.
Top up creditsSend a chat completion request using your provider/model ID.
View API referenceInstall Luntrex n8n nodes and build workflows in minutes.
Explore n8n guidesCopy this request to verify your API key right away.
curl -X POST https://luntrex.com/api/v1/chat/completions \
-H "Authorization: Bearer <API_KEY>" \
-H "Content-Type: application/json" \
-d '{
"model": "openai/gpt-4.1-mini",
"messages": [{"role":"user","content":"Hello from Luntrex"}]
}'