# Workflows.Get

```go
func (workflowClient) Get(
    ctx context.Context,
    slug string,
) (*workflows.Workflow, error)
```

Get a workflow by slug.

## Parameters

**slug**

`string`

required: true

The workflow slug.

## Returns

A workflow object.

```go title="Go"
workflow, err := client.Workflows.Get(ctx, "scene-processing")
```
