---
title: "Execute Named Flow"
method: POST
path: "/api/v1/agentic/execute/{flow_name}"
tags: ["Agentic"]
---

# Execute Named Flow

`POST /api/v1/agentic/execute/{flow_name}`

Execute a named flow from the flows directory.

Named assistant flows embed an Agent that needs provider/model/api-key
context. Resolving it here (instead of running the raw file) turns a
silent 500 into a successful run, or a clear 4xx when no provider is set.

## Path parameters

- `flow_name` string, required

## Request body

- AssistantRequest — Request model for assistant interactions.
  - `component_id` string, nullable
  - `field_name` string, nullable
  - `flow_id` string, required
  - `input_value` string, nullable
  - `iterations_limit` integer, nullable
  - `max_retries` integer, nullable
  - `model_name` string, nullable
  - `provider` string, nullable
  - `session_id` string, nullable

## Response `200`

Successful Response

- object

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/langflow-ai/apis/langflow.md) · [All operations](https://skmtc.net/langflow-ai/apis/langflow/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/langflow-ai/langflow/revisions/22962dc5e81b/schema)
