Synchronous Execution
Executes the latest published version of a specific Chatflow and waits for the complete result. The response is formatted for immediate use in chat applications. This is a blocking call, best used for quick-running chatflows.
Your secret API key.
The unique identifier of the Chatflow to execute.
The execution was successful and the final output is returned in an OpenAI-compatible format.
API key is missing or invalid.
An unexpected error occurred on the server.
Executes the latest published version of a specific Chatflow and streams structured events in real-time using Server-Sent Events (SSE). Each event is a JSON object sent in the format data: <json_object>\n\n. This provides a detailed, live feed of the execution progress, node by node.
Your secret API key.
The unique identifier of the Chatflow to execute.
A stream of structured JSON events representing the real-time execution progress and output.
API key is missing or invalid.
An unexpected error occurred on the server.
Executes the latest published version of a specific Workflow and waits for the complete, detailed result. This is a blocking call that returns the final output and optionally the execution details of each node.
Your secret API key.
The unique identifier of the Workflow to execute.
The execution was successful and the final output is returned as a detailed JSON object.
API key is missing or invalid.
An unexpected error occurred on the server.
Executes the latest published version of a specific Workflow and streams structured events in real-time using Server-Sent Events (SSE). Each event is a JSON object sent in the format data: <json_object>\n\n. This provides a detailed, live feed of the workflow's progress, node by node.
Your secret API key.
The unique identifier of the Workflow to execute.
A stream of structured JSON events representing the real-time execution progress and output.
API key is missing or invalid.
An unexpected error occurred on the server.
Last updated