# Automations.Get

```go
func (automationClient) Get(
    ctx context.Context,
    automationID uuid.UUID,
) (*workflows.Automation, error)
```

Get an automation prototype by ID.

## Parameters

**automationID**

`uuid.UUID`

required: true

The ID of the automation.

## Returns

An automation object.

```go title="Go"
automation, err := client.Automations.Get(ctx, automationID)
```
