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

# Get Automation

> Retrieves a single workflow automation by its ID.

<Note>
  Retrieves a single workflow automation by its ID, including its full `steps` graph and live analytics.
</Note>

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url https://api.autosend.com/v1/automations/60d5ec49f1b2c72d9c8b9abc \
    --header 'Authorization: Bearer AS_your-project-api-key'
  ```

  ```python Python theme={null}
  import requests

  url = "https://api.autosend.com/v1/automations/60d5ec49f1b2c72d9c8b9abc"

  headers = {
      "Authorization": "Bearer AS_your-project-api-key"
  }

  response = requests.get(url, headers=headers)
  print(response.json())
  ```

  ```javascript JavaScript theme={null}
  fetch('https://api.autosend.com/v1/automations/60d5ec49f1b2c72d9c8b9abc', {
    method: 'GET',
    headers: {
      'Authorization': 'Bearer AS_your-project-api-key'
    }
  })
    .then(response => response.json())
    .then(data => console.log(data))
    .catch(error => console.error('Error:', error));
  ```

  ```php PHP theme={null}
  <?php

  $url = 'https://api.autosend.com/v1/automations/60d5ec49f1b2c72d9c8b9abc';

  $ch = curl_init($url);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  curl_setopt($ch, CURLOPT_HTTPHEADER, [
      'Authorization: Bearer AS_your-project-api-key'
  ]);

  $response = curl_exec($ch);
  curl_close($ch);

  echo $response;
  ?>
  ```

  ```go Go theme={null}
  package main

  import (
      "fmt"
      "io"
      "net/http"
  )

  func main() {
      url := "https://api.autosend.com/v1/automations/60d5ec49f1b2c72d9c8b9abc"

      req, _ := http.NewRequest("GET", url, nil)
      req.Header.Set("Authorization", "Bearer AS_your-project-api-key")

      client := &http.Client{}
      resp, err := client.Do(req)
      if err != nil {
          fmt.Println("Error:", err)
          return
      }
      defer resp.Body.Close()

      body, _ := io.ReadAll(resp.Body)
      fmt.Println(string(body))
  }
  ```

  ```java Java theme={null}
  import java.io.BufferedReader;
  import java.io.InputStreamReader;
  import java.net.HttpURLConnection;
  import java.net.URL;

  public class GetWorkflow {
      public static void main(String[] args) {
          try {
              URL url = new URL("https://api.autosend.com/v1/automations/60d5ec49f1b2c72d9c8b9abc");
              HttpURLConnection con = (HttpURLConnection) url.openConnection();

              con.setRequestMethod("GET");
              con.setRequestProperty("Authorization", "Bearer AS_your-project-api-key");

              BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
              String inputLine;
              StringBuilder content = new StringBuilder();
              while ((inputLine = in.readLine()) != null) {
                  content.append(inputLine);
              }
              in.close();
              con.disconnect();

              System.out.println(content.toString());
          } catch (Exception e) {
              e.printStackTrace();
          }
      }
  }
  ```

  ```ruby Ruby theme={null}
  require 'net/http'
  require 'uri'

  uri = URI('https://api.autosend.com/v1/automations/60d5ec49f1b2c72d9c8b9abc')

  http = Net::HTTP.new(uri.host, uri.port)
  http.use_ssl = true

  request = Net::HTTP::Get.new(uri)
  request['Authorization'] = 'Bearer AS_your-project-api-key'

  response = http.request(request)
  puts response.body
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "data": {
      "id": "60d5ec49f1b2c72d9c8b9abc",
      "projectId": "60d5ec49f1b2c72d9c8b1111",
      "name": "Welcome Series",
      "description": "Sends a 2-email welcome flow when a contact is created",
      "status": "active",
      "entryCriteria": { "type": "contact_created" },
      "exitCriteria": { "type": "workflow_complete" },
      "trackingOpen": true,
      "trackingClick": true,
      "settings": {
        "maxExecutionDays": 60,
        "allowReentry": false,
        "timezone": "UTC",
        "priority": 1
      },
      "steps": [
        { "stepId": "step_aa11", "type": "wait", "delay": { "value": 0, "unit": "minutes" } },
        { "stepId": "step_bb22", "type": "email", "email": { "templateId": "60d5ec49f1b2c72d9c8b1234" } }
      ],
      "tags": ["onboarding"],
      "analytics": {
        "totalEntered": 1250,
        "totalCompleted": 980,
        "totalExited": 40,
        "totalActive": 230
      },
      "activeAt": "2026-05-08T10:00:00.000Z",
      "createdAt": "2026-05-01T08:00:00.000Z",
      "updatedAt": "2026-05-08T10:00:00.000Z"
    }
  }
  ```
</ResponseExample>

***

#### Authorizations

<ParamField path="Authorizations" type="string | header" required>
  Project API key header of the form Bearer `AS_<key>`.
</ParamField>

### Path Parameters

<ParamField path="id" type="string" required>
  Workflow automation ID.

  Example: `"60d5ec49f1b2c72d9c8b9abc"`
</ParamField>

#### Response

<span className="text-sm">Workflow automation retrieved successfully</span>

<ResponseField name="success" type="boolean">
  Example: `true`
</ResponseField>

<ResponseField name="data" type="object">
  The workflow automation, with email-step `templateId` references enriched with template metadata where applicable.

  <Expandable title="child attributes">
    <ResponseField name="data.id" type="string">
      Unique workflow identifier.
    </ResponseField>

    <ResponseField name="data.projectId" type="string">
      Project the workflow belongs to.
    </ResponseField>

    <ResponseField name="data.name" type="string">
      Display name of the workflow.
    </ResponseField>

    <ResponseField name="data.description" type="string">
      Optional description.
    </ResponseField>

    <ResponseField name="data.status" type="string">
      Current status: `draft`, `active`, `paused`, or `archived`.
    </ResponseField>

    <ResponseField name="data.entryCriteria" type="object">
      Conditions that determine which contacts enter the workflow.
    </ResponseField>

    <ResponseField name="data.exitCriteria" type="object">
      Conditions that cause contacts to exit the workflow early.
    </ResponseField>

    <ResponseField name="data.trackingOpen" type="boolean">
      Whether open tracking is enabled.
    </ResponseField>

    <ResponseField name="data.trackingClick" type="boolean">
      Whether click tracking is enabled.
    </ResponseField>

    <ResponseField name="data.settings" type="object">
      Automation configuration settings.

      <Expandable title="settings">
        <ResponseField name="data.settings.maxExecutionDays" type="integer">
          Maximum number of days a contact can remain active in the workflow.
        </ResponseField>

        <ResponseField name="data.settings.allowReentry" type="boolean">
          Whether contacts can re-enter the workflow after completing it.
        </ResponseField>

        <ResponseField name="data.settings.timezone" type="string">
          Timezone used for scheduling steps (e.g., `UTC`).
        </ResponseField>

        <ResponseField name="data.settings.priority" type="integer">
          Execution priority when multiple automations are triggered simultaneously.
        </ResponseField>
      </Expandable>
    </ResponseField>

    <ResponseField name="data.steps" type="object[]">
      Full ordered step graph, with email steps enriched with template metadata.
    </ResponseField>

    <ResponseField name="data.tags" type="string[]">
      Tags for filtering and organization.
    </ResponseField>

    <ResponseField name="data.analytics" type="object">
      Live engagement metrics (`totalEntered`, `totalCompleted`, `totalExited`, `totalActive`).
    </ResponseField>

    <ResponseField name="data.activeAt" type="string">
      ISO 8601 timestamp when the workflow was last activated.
    </ResponseField>

    <ResponseField name="data.createdAt" type="string">
      ISO 8601 creation timestamp.
    </ResponseField>

    <ResponseField name="data.updatedAt" type="string">
      ISO 8601 last-updated timestamp.
    </ResponseField>
  </Expandable>
</ResponseField>

#### Error Responses

<ResponseField name="404 - Workflow not found" type="object">
  ```json theme={null}
  {
    "success": false,
    "error": {
      "message": "Workflow automation not found",
      "code": "WORKFLOW_NOT_FOUND"
    }
  }
  ```
</ResponseField>


## OpenAPI

````yaml GET /automations/{id}
openapi: 3.1.0
info:
  title: AutoSend API
  description: >-
    AutoSend REST API for managing workflow automations. Workflow automations
    send a sequence of emails to contacts based on entry criteria (contact
    created, added to a list, segment match, contact-property match,
    contact-property change, or a custom event). These endpoints accept a
    standard project API key (AS_ prefix).
  version: 1.0.0
servers:
  - url: https://api.autosend.com/v1
security:
  - bearerAuth: []
paths:
  /automations/{id}:
    get:
      summary: Get Automation
      description: Retrieves a single workflow automation by its ID.
components: {}

````

## Related topics

- [List Automations](/api-reference/automations/list-automations.md)
- [AutoSend MCP Server](/ai/mcp-server.md)
- [Changelog](/changelog.md)
- [Delete Automation](/api-reference/automations/delete-automation.md)
- [Resume Automation](/api-reference/automations/resume-automation.md)
