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

# Retrieve an automation

> Get a automation by ID

<ParamField path="automation_id" type="integer" required>
  Automation ID.
</ParamField>

## SDK

<CodeGroup>
  ```typescript TypeScript theme={null}
  const item = await client.automations.retrieve(id);
  ```

  ```python Python theme={null}
  item = await client.automations.retrieve(automation_id)
  ```
</CodeGroup>
