> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tilebox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Workflows.Get

```go theme={"system"}
func (workflowClient) Get(
    ctx context.Context,
    slug string,
) (*workflows.Workflow, error)
```

Get a workflow by slug.

## Parameters

<ParamField path="slug" type="string" required>
  The workflow slug.
</ParamField>

## Returns

A workflow object.

<RequestExample>
  ```go Go theme={"system"}
  workflow, err := client.Workflows.Get(ctx, "scene-processing")
  ```
</RequestExample>
