> ## 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.

# WorkflowClient.find

```python theme={"system"}
def WorkflowClient.find(workflow_or_slug: Workflow | str) -> Workflow
```

Get a workflow by slug.

## Parameters

<ParamField path="workflow_or_slug" type="Workflow | str" required>
  The workflow or workflow slug to get.
</ParamField>

## Returns

A workflow object.

<RequestExample>
  ```python Python theme={"system"}
  workflow = workflow_client.find("scene-processing")
  ```
</RequestExample>
