cURL
curl --request POST \ --url https://flowra.dev/api/v1/ai/llm/chat \ --header 'Content-Type: application/json' \ --header 'x-api-key: <api-key>' \ --data ' { "messages": "<array>", "model": "<string>", "temperature": 123, "maxTokens": 123, "systemPrompt": "<string>" } '
Send a list of messages (user/assistant/system) and get the next assistant reply. Use for multi-turn conversations.
Project API key. Create and manage keys in the dashboard under Project → API Keys. Send as header: x-api-key:
Show child attributes
Assistant reply text
Was this page helpful?