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

# Automations.Get

```go theme={"system"}
func (automationClient) Get(
    ctx context.Context,
    automationID uuid.UUID,
) (*workflows.Automation, error)
```

Get an automation prototype by ID.

## Parameters

<ParamField path="automationID" type="uuid.UUID" required>
  The ID of the automation.
</ParamField>

## Returns

An automation object.

<RequestExample>
  ```go Go theme={"system"}
  automation, err := client.Automations.Get(ctx, automationID)
  ```
</RequestExample>
