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

# Chatflow App API

> API for Chatflow apps, covering chat messages, workflow-level streaming, and conversation management

[Chatflow apps](/en/2.8.x/use/build/workflow-chatflow) run in `advanced-chat` mode, streaming workflow-level events (node starts, finishes, and iterations) alongside the reply. Previous turns persist as context, so later messages can reference earlier ones.

<Info>
  Authentication, the base URL, and the `user` field that scopes end-user data are covered in [Get Started](/en/2.8.x/develop/api/guides/get-started) and [End User Identity](/en/2.8.x/develop/api/guides/end-user-identity).
</Info>

## Send Messages and Stream Replies

* **[Send Chat Message](/en/2.8.x/develop/api/chat-messages/send-chat-message)**: send a query to your Chatflow app. Streaming mode carries workflow and node events alongside the answer text; blocking mode returns once the run finishes.
* **[Stop Chat Message Generation](/en/2.8.x/develop/api/chat-messages/stop-chat-message-generation)**: interrupt a streaming reply before it finishes.
* **[Get Next Suggested Questions](/en/2.8.x/develop/api/chat-messages/get-next-suggested-questions)**: propose follow-up questions after a reply completes, based on the conversation so far.

## Manage Conversations

* **[List Conversations](/en/2.8.x/develop/api/conversations/list-conversations)**: the current user's conversations, ordered by most recent activity.
* **[List Conversation Messages](/en/2.8.x/develop/api/conversations/list-conversation-messages)**: one conversation's message history, for a scrolling chat UI.
* **[Rename Conversation](/en/2.8.x/develop/api/conversations/rename-conversation)**: set or auto-generate a display name.
* **[Delete Conversation](/en/2.8.x/develop/api/conversations/delete-conversation)**: remove a conversation.

## Handle Files

* **[Upload File](/en/2.8.x/develop/api/files/upload-file)**: upload an image, document, audio, or video file for [Send Chat Message](/en/2.8.x/develop/api/chat-messages/send-chat-message) to reference. Files are scoped to the uploading end user.

## Transcribe and Synthesize Speech

* **[Convert Audio to Text](/en/2.8.x/develop/api/audio/convert-audio-to-text)**: transcribe an uploaded audio file (MP3, M4A, WAV, AMR, or MPGA, up to 30 MB) so end users can speak their input instead of typing it.
* **[Convert Text to Audio](/en/2.8.x/develop/api/audio/convert-text-to-audio)**: synthesize a reply back into speech.

## Inspect Workflow Runs

* **[Get Workflow Run Detail](/en/2.8.x/develop/api/workflow-runs/get-workflow-run-detail)**: a run's status and outputs, by the `workflow_run_id` that appears in the workflow and node events streamed alongside a chat reply.
* **[List Workflow Logs](/en/2.8.x/develop/api/workflow-runs/list-workflow-logs)**: run-level summaries covering status, token usage, step count, and timing, rather than a node-by-node execution log.

## Retrieve App Info and Settings

* **[Get App Info](/en/2.8.x/develop/api/applications/get-app-info)**: the app's name, description, and tags.
* **[Get App Parameters](/en/2.8.x/develop/api/applications/get-app-parameters)**: the fields your calls send in `inputs` (names, types, defaults) plus the app's feature switches—the basis for building requests or a client UI.
* **[Get App Meta](/en/2.8.x/develop/api/applications/get-app-meta)**: tool icons and other configuration metadata.

## Collect Feedback

* **[Submit Message Feedback](/en/2.8.x/develop/api/feedback/submit-message-feedback)**: end users rate a reply as `like` or `dislike`, with an optional text comment.
