---
title: "Read Project"
method: GET
path: "/api/v1/projects/{project_id}"
tags: ["Projects"]
---

# Read Project

`GET /api/v1/projects/{project_id}`

## Path parameters

- `project_id` string, uuid, required

## Query parameters

- `page` integer, nullable
- `size` integer, nullable
- `is_component` boolean
- `is_flow` boolean
- `search` string

## Response `200`

Successful Response

- union
  - FolderWithPaginatedFlows
    - `folder` FolderRead, required
      - `name` string, required
      - `description` string, nullable
      - `auth_settings` object, nullable — Authentication settings for the folder/project
      - `id` string, uuid, required
      - `parent_id` string, uuid, nullable, required
    - `flows` PageFlow, required
      - `items` Flow[], required
        - `name` string, required
        - `description` string, nullable
        - `icon` string, nullable
        - `icon_bg_color` string, nullable
        - `gradient` string, nullable
        - `data` object, nullable
        - `is_component` boolean, nullable
        - `updated_at` string, date-time, nullable
        - `webhook` boolean, nullable — Can be used on the webhook endpoint
        - `endpoint_name` string, nullable
        - `tags` string[], nullable
        - `locked` boolean, nullable
        - `mcp_enabled` boolean, nullable — Can be exposed in the MCP server
        - `action_name` string, nullable — The name of the action associated with the flow
        - `action_description` string, nullable — The description of the action associated with the flow
        - `access_type` 'PRIVATE' | 'PUBLIC'
        - `id` string, uuid
        - `user_id` string, uuid, nullable, required
        - `folder_id` string, uuid, nullable
        - `fs_path` string, nullable
      - `total` integer, required
      - `page` integer, required
      - `size` integer, required
      - `pages` integer, required
  - FolderReadWithFlows
    - `name` string, required
    - `description` string, nullable
    - `auth_settings` object, nullable — Authentication settings for the folder/project
    - `id` string, uuid, required
    - `parent_id` string, uuid, nullable, required
    - `flows` FlowRead[]
      - `name` string, required
      - `description` string, nullable
      - `icon` string, nullable
      - `icon_bg_color` string, nullable
      - `gradient` string, nullable
      - `data` object, nullable
      - `is_component` boolean, nullable
      - `updated_at` string, date-time, nullable
      - `webhook` boolean, nullable — Can be used on the webhook endpoint
      - `endpoint_name` string, nullable
      - `tags` string[], nullable — The tags of the flow
      - `locked` boolean, nullable
      - `mcp_enabled` boolean, nullable — Can be exposed in the MCP server
      - `action_name` string, nullable — The name of the action associated with the flow
      - `action_description` string, nullable — The description of the action associated with the flow
      - `access_type` 'PRIVATE' | 'PUBLIC'
      - `id` string, uuid, required
      - `user_id` string, uuid, nullable, required
      - `folder_id` string, uuid, nullable, required

## Other responses

- `422` — Validation Error

## Changes

- **2025-12-23** `b0ee9ddb8d9f` — 2 info
  - added `#/components/schemas/FolderWithPaginatedFlows, #/components/schemas/FolderReadWithFlows` to the response body `anyOf` list for the response status `200`
  - removed `#/components/schemas/FolderWithPaginatedFlows-Output, #/components/schemas/FolderReadWithFlows-Output` from the response body `anyOf` list for the response status `200`
- **2025-10-28** `26d4eddab799` — 2 info
  - added `#/components/schemas/FolderWithPaginatedFlows-Output, #/components/schemas/FolderReadWithFlows-Output` to the response body `anyOf` list for the response status `200`
  - removed `#/components/schemas/FolderWithPaginatedFlows, #/components/schemas/FolderReadWithFlows` from the response body `anyOf` list for the response status `200`
- **2025-10-16** `840e512f9378` — 2 info
  - added `#/components/schemas/FolderWithPaginatedFlows, #/components/schemas/FolderReadWithFlows` to the response body `anyOf` list for the response status `200`
  - removed `#/components/schemas/FolderWithPaginatedFlows-Output, #/components/schemas/FolderReadWithFlows-Output` from the response body `anyOf` list for the response status `200`
- …earlier changes not shown

[Full history](https://skmtc.dev/langflow-ai/apis/langflow/changes/api/v1/projects/:project_id/get.md)

---

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