---
title: "Get workflow details"
method: GET
path: "/workflows/{username}/{workflow_name}"
tags: ["Workflows"]
---

# Get workflow details

`GET /workflows/{username}/{workflow_name}`

Get detailed information about a specific workflow, including its full contents/definition.

**Authentication:** Required.

**Common Use Cases:**
- Load a workflow for editing
- View workflow configuration
- Export workflow definition

## Path parameters

- `username` string, required — The username of the workflow owner
- `workflow_name` string, required — The workflow name/slug

## Response `200`

Successfully retrieved workflow details

- object — Response containing a single workflow's details
  - `workflow` object, required — The workflow details
    - `name` string, required — Unique workflow name/slug within the user's namespace
    - `title` string, required — Human-readable workflow title
    - `user_nickname` string, required — Display name/username of the owner
    - `created_at` string, required — ISO8601 timestamp of workflow creation
    - `is_public` boolean, required — Whether the workflow is publicly visible
    - `contents` object, required — The workflow definition/configuration object

## Other responses

- `400` — Invalid request parameters
- `401` — Authentication required
- `403` — Access denied
- `404` — Resource not found
- `429` — Rate limit exceeded
- `500` — Internal server error

---

[API](https://skmtc.dev/fal/apis/platform-apis.md) · [All operations](https://skmtc.dev/fal/apis/platform-apis/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/fal/platform-apis/revisions/0c7dabf80b00/schema)
