Skip to content

List Chatflows

This example assumes using Flowise; is in scope and apiKey contains your Flowise API key.

1
2
3
4
5
6
7
8
using var client = new FlowiseClient(apiKey);

var chatflows = await client.Chatflows.ListChatflowsAsync();

foreach (var chatflow in chatflows)
{
    Console.WriteLine($"Chatflow: {chatflow.Name} (ID: {chatflow.Id})");
}